Volcengine v0.0.31 published on Monday, May 12, 2025 by Volcengine
volcengine.vpn.SslVpnClientCerts
Explore with Pulumi AI
Deprecated: volcengine.vpn.SslVpnClientCerts has been deprecated in favor of volcengine.vpn.getSslVpnClientCerts
Use this data source to query detailed information of ssl vpn client certs
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooZones = volcengine.ecs.getZones({});
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
vpcName: "acc-test-vpc",
cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
subnetName: "acc-test-subnet",
cidrBlock: "172.16.0.0/24",
zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
vpcId: fooVpc.id,
});
const fooGateway = new volcengine.vpn.Gateway("fooGateway", {
vpcId: fooVpc.id,
subnetId: fooSubnet.id,
bandwidth: 5,
vpnGatewayName: "acc-test1",
description: "acc-test1",
period: 7,
projectName: "default",
sslEnabled: true,
sslMaxConnections: 5,
});
const fooSslVpnServer = new volcengine.vpn.SslVpnServer("fooSslVpnServer", {
vpnGatewayId: fooGateway.id,
localSubnets: [fooSubnet.cidrBlock],
clientIpPool: "172.16.2.0/24",
sslVpnServerName: "acc-test-ssl",
description: "acc-test",
protocol: "UDP",
cipher: "AES-128-CBC",
auth: "SHA1",
compress: true,
});
const fooSslVpnClientCert: volcengine.vpn.SslVpnClientCert[] = [];
for (const range = {value: 0}; range.value < 5; range.value++) {
fooSslVpnClientCert.push(new volcengine.vpn.SslVpnClientCert(`fooSslVpnClientCert-${range.value}`, {
sslVpnServerId: fooSslVpnServer.id,
sslVpnClientCertName: `acc-test-client-cert-${range.value}`,
description: "acc-test",
}));
}
const fooSslVpnClientCerts = volcengine.vpn.getSslVpnClientCertsOutput({
ids: fooSslVpnClientCert.map(__item => __item.id),
});
import pulumi
import pulumi_volcengine as volcengine
foo_zones = volcengine.ecs.get_zones()
foo_vpc = volcengine.vpc.Vpc("fooVpc",
vpc_name="acc-test-vpc",
cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
subnet_name="acc-test-subnet",
cidr_block="172.16.0.0/24",
zone_id=foo_zones.zones[0].id,
vpc_id=foo_vpc.id)
foo_gateway = volcengine.vpn.Gateway("fooGateway",
vpc_id=foo_vpc.id,
subnet_id=foo_subnet.id,
bandwidth=5,
vpn_gateway_name="acc-test1",
description="acc-test1",
period=7,
project_name="default",
ssl_enabled=True,
ssl_max_connections=5)
foo_ssl_vpn_server = volcengine.vpn.SslVpnServer("fooSslVpnServer",
vpn_gateway_id=foo_gateway.id,
local_subnets=[foo_subnet.cidr_block],
client_ip_pool="172.16.2.0/24",
ssl_vpn_server_name="acc-test-ssl",
description="acc-test",
protocol="UDP",
cipher="AES-128-CBC",
auth="SHA1",
compress=True)
foo_ssl_vpn_client_cert = []
for range in [{"value": i} for i in range(0, 5)]:
foo_ssl_vpn_client_cert.append(volcengine.vpn.SslVpnClientCert(f"fooSslVpnClientCert-{range['value']}",
ssl_vpn_server_id=foo_ssl_vpn_server.id,
ssl_vpn_client_cert_name=f"acc-test-client-cert-{range['value']}",
description="acc-test"))
foo_ssl_vpn_client_certs = volcengine.vpn.get_ssl_vpn_client_certs_output(ids=[__item.id for __item in foo_ssl_vpn_client_cert])
package main
import (
"fmt"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpn"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
fooZones, err := ecs.GetZones(ctx, nil, nil);
if err != nil {
return err
}
fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
VpcName: pulumi.String("acc-test-vpc"),
CidrBlock: pulumi.String("172.16.0.0/16"),
})
if err != nil {
return err
}
fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
SubnetName: pulumi.String("acc-test-subnet"),
CidrBlock: pulumi.String("172.16.0.0/24"),
ZoneId: pulumi.String(fooZones.Zones[0].Id),
VpcId: fooVpc.ID(),
})
if err != nil {
return err
}
fooGateway, err := vpn.NewGateway(ctx, "fooGateway", &vpn.GatewayArgs{
VpcId: fooVpc.ID(),
SubnetId: fooSubnet.ID(),
Bandwidth: pulumi.Int(5),
VpnGatewayName: pulumi.String("acc-test1"),
Description: pulumi.String("acc-test1"),
Period: pulumi.Int(7),
ProjectName: pulumi.String("default"),
SslEnabled: pulumi.Bool(true),
SslMaxConnections: pulumi.Int(5),
})
if err != nil {
return err
}
fooSslVpnServer, err := vpn.NewSslVpnServer(ctx, "fooSslVpnServer", &vpn.SslVpnServerArgs{
VpnGatewayId: fooGateway.ID(),
LocalSubnets: pulumi.StringArray{
fooSubnet.CidrBlock,
},
ClientIpPool: pulumi.String("172.16.2.0/24"),
SslVpnServerName: pulumi.String("acc-test-ssl"),
Description: pulumi.String("acc-test"),
Protocol: pulumi.String("UDP"),
Cipher: pulumi.String("AES-128-CBC"),
Auth: pulumi.String("SHA1"),
Compress: pulumi.Bool(true),
})
if err != nil {
return err
}
var fooSslVpnClientCert []*vpn.SslVpnClientCert
for index := 0; index < 5; index++ {
key0 := index
val0 := index
__res, err := vpn.NewSslVpnClientCert(ctx, fmt.Sprintf("fooSslVpnClientCert-%v", key0), &vpn.SslVpnClientCertArgs{
SslVpnServerId: fooSslVpnServer.ID(),
SslVpnClientCertName: pulumi.String(fmt.Sprintf("acc-test-client-cert-%v", val0)),
Description: pulumi.String("acc-test"),
})
if err != nil {
return err
}
fooSslVpnClientCert = append(fooSslVpnClientCert, __res)
}
_ = vpn.GetSslVpnClientCertsOutput(ctx, vpn.GetSslVpnClientCertsOutputArgs{
Ids: %!v(PANIC=Format method: fatal: A failure has occurred: unlowered splat expression @ #-functions-volcengine:vpn-sslVpnClientCerts:SslVpnClientCerts.pp:44,9-34),
}, nil);
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var fooZones = Volcengine.Ecs.GetZones.Invoke();
var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
{
VpcName = "acc-test-vpc",
CidrBlock = "172.16.0.0/16",
});
var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
{
SubnetName = "acc-test-subnet",
CidrBlock = "172.16.0.0/24",
ZoneId = fooZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
VpcId = fooVpc.Id,
});
var fooGateway = new Volcengine.Vpn.Gateway("fooGateway", new()
{
VpcId = fooVpc.Id,
SubnetId = fooSubnet.Id,
Bandwidth = 5,
VpnGatewayName = "acc-test1",
Description = "acc-test1",
Period = 7,
ProjectName = "default",
SslEnabled = true,
SslMaxConnections = 5,
});
var fooSslVpnServer = new Volcengine.Vpn.SslVpnServer("fooSslVpnServer", new()
{
VpnGatewayId = fooGateway.Id,
LocalSubnets = new[]
{
fooSubnet.CidrBlock,
},
ClientIpPool = "172.16.2.0/24",
SslVpnServerName = "acc-test-ssl",
Description = "acc-test",
Protocol = "UDP",
Cipher = "AES-128-CBC",
Auth = "SHA1",
Compress = true,
});
var fooSslVpnClientCert = new List<Volcengine.Vpn.SslVpnClientCert>();
for (var rangeIndex = 0; rangeIndex < 5; rangeIndex++)
{
var range = new { Value = rangeIndex };
fooSslVpnClientCert.Add(new Volcengine.Vpn.SslVpnClientCert($"fooSslVpnClientCert-{range.Value}", new()
{
SslVpnServerId = fooSslVpnServer.Id,
SslVpnClientCertName = $"acc-test-client-cert-{range.Value}",
Description = "acc-test",
}));
}
var fooSslVpnClientCerts = Volcengine.Vpn.GetSslVpnClientCerts.Invoke(new()
{
Ids = fooSslVpnClientCert.Select(__item => __item.Id).ToList(),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.ecs.EcsFunctions;
import com.pulumi.volcengine.ecs.inputs.GetZonesArgs;
import com.pulumi.volcengine.vpc.Vpc;
import com.pulumi.volcengine.vpc.VpcArgs;
import com.pulumi.volcengine.vpc.Subnet;
import com.pulumi.volcengine.vpc.SubnetArgs;
import com.pulumi.volcengine.vpn.Gateway;
import com.pulumi.volcengine.vpn.GatewayArgs;
import com.pulumi.volcengine.vpn.SslVpnServer;
import com.pulumi.volcengine.vpn.SslVpnServerArgs;
import com.pulumi.volcengine.vpn.SslVpnClientCert;
import com.pulumi.volcengine.vpn.SslVpnClientCertArgs;
import com.pulumi.volcengine.vpn.VpnFunctions;
import com.pulumi.volcengine.vpn.inputs.GetSslVpnClientCertsArgs;
import com.pulumi.codegen.internal.KeyedValue;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var fooZones = EcsFunctions.getZones();
var fooVpc = new Vpc("fooVpc", VpcArgs.builder()
.vpcName("acc-test-vpc")
.cidrBlock("172.16.0.0/16")
.build());
var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()
.subnetName("acc-test-subnet")
.cidrBlock("172.16.0.0/24")
.zoneId(fooZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
.vpcId(fooVpc.id())
.build());
var fooGateway = new Gateway("fooGateway", GatewayArgs.builder()
.vpcId(fooVpc.id())
.subnetId(fooSubnet.id())
.bandwidth(5)
.vpnGatewayName("acc-test1")
.description("acc-test1")
.period(7)
.projectName("default")
.sslEnabled(true)
.sslMaxConnections(5)
.build());
var fooSslVpnServer = new SslVpnServer("fooSslVpnServer", SslVpnServerArgs.builder()
.vpnGatewayId(fooGateway.id())
.localSubnets(fooSubnet.cidrBlock())
.clientIpPool("172.16.2.0/24")
.sslVpnServerName("acc-test-ssl")
.description("acc-test")
.protocol("UDP")
.cipher("AES-128-CBC")
.auth("SHA1")
.compress(true)
.build());
for (var i = 0; i < 5; i++) {
new SslVpnClientCert("fooSslVpnClientCert-" + i, SslVpnClientCertArgs.builder()
.sslVpnServerId(fooSslVpnServer.id())
.sslVpnClientCertName(String.format("acc-test-client-cert-%s", range.value()))
.description("acc-test")
.build());
}
final var fooSslVpnClientCerts = VpnFunctions.getSslVpnClientCerts(GetSslVpnClientCertsArgs.builder()
.ids(fooSslVpnClientCert.stream().map(element -> element.id()).collect(toList()))
.build());
}
}
Coming soon!
Using SslVpnClientCerts
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function sslVpnClientCerts(args: SslVpnClientCertsArgs, opts?: InvokeOptions): Promise<SslVpnClientCertsResult>
function sslVpnClientCertsOutput(args: SslVpnClientCertsOutputArgs, opts?: InvokeOptions): Output<SslVpnClientCertsResult>
def ssl_vpn_client_certs(ids: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
ssl_vpn_client_cert_name: Optional[str] = None,
ssl_vpn_server_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> SslVpnClientCertsResult
def ssl_vpn_client_certs_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
ssl_vpn_client_cert_name: Optional[pulumi.Input[str]] = None,
ssl_vpn_server_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[SslVpnClientCertsResult]
func SslVpnClientCerts(ctx *Context, args *SslVpnClientCertsArgs, opts ...InvokeOption) (*SslVpnClientCertsResult, error)
func SslVpnClientCertsOutput(ctx *Context, args *SslVpnClientCertsOutputArgs, opts ...InvokeOption) SslVpnClientCertsResultOutput
public static class SslVpnClientCerts
{
public static Task<SslVpnClientCertsResult> InvokeAsync(SslVpnClientCertsArgs args, InvokeOptions? opts = null)
public static Output<SslVpnClientCertsResult> Invoke(SslVpnClientCertsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<SslVpnClientCertsResult> sslVpnClientCerts(SslVpnClientCertsArgs args, InvokeOptions options)
public static Output<SslVpnClientCertsResult> sslVpnClientCerts(SslVpnClientCertsArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:vpn:SslVpnClientCerts
arguments:
# arguments dictionary
The following arguments are supported:
- Ids List<string>
- The ids list of ssl vpn client cert.
- Name
Regex string - A Name Regex of ssl vpn client cert.
- Output
File string - File name where to save data source results.
- Ssl
Vpn stringClient Cert Name - The name of the ssl vpn client cert.
- Ssl
Vpn stringServer Id - The id of the ssl vpn server.
- Ids []string
- The ids list of ssl vpn client cert.
- Name
Regex string - A Name Regex of ssl vpn client cert.
- Output
File string - File name where to save data source results.
- Ssl
Vpn stringClient Cert Name - The name of the ssl vpn client cert.
- Ssl
Vpn stringServer Id - The id of the ssl vpn server.
- ids List<String>
- The ids list of ssl vpn client cert.
- name
Regex String - A Name Regex of ssl vpn client cert.
- output
File String - File name where to save data source results.
- ssl
Vpn StringClient Cert Name - The name of the ssl vpn client cert.
- ssl
Vpn StringServer Id - The id of the ssl vpn server.
- ids string[]
- The ids list of ssl vpn client cert.
- name
Regex string - A Name Regex of ssl vpn client cert.
- output
File string - File name where to save data source results.
- ssl
Vpn stringClient Cert Name - The name of the ssl vpn client cert.
- ssl
Vpn stringServer Id - The id of the ssl vpn server.
- ids Sequence[str]
- The ids list of ssl vpn client cert.
- name_
regex str - A Name Regex of ssl vpn client cert.
- output_
file str - File name where to save data source results.
- ssl_
vpn_ strclient_ cert_ name - The name of the ssl vpn client cert.
- ssl_
vpn_ strserver_ id - The id of the ssl vpn server.
- ids List<String>
- The ids list of ssl vpn client cert.
- name
Regex String - A Name Regex of ssl vpn client cert.
- output
File String - File name where to save data source results.
- ssl
Vpn StringClient Cert Name - The name of the ssl vpn client cert.
- ssl
Vpn StringServer Id - The id of the ssl vpn server.
SslVpnClientCerts Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ssl
Vpn List<SslClient Certs Vpn Client Certs Ssl Vpn Client Cert> - The collection of of ssl vpn client certs.
- Total
Count int - The total count of ssl vpn client cert query.
- Ids List<string>
- Name
Regex string - Output
File string - Ssl
Vpn stringClient Cert Name - The name of the ssl vpn client cert.
- Ssl
Vpn stringServer Id - The id of the ssl vpn server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ssl
Vpn []SslClient Certs Vpn Client Certs Ssl Vpn Client Cert - The collection of of ssl vpn client certs.
- Total
Count int - The total count of ssl vpn client cert query.
- Ids []string
- Name
Regex string - Output
File string - Ssl
Vpn stringClient Cert Name - The name of the ssl vpn client cert.
- Ssl
Vpn stringServer Id - The id of the ssl vpn server.
- id String
- The provider-assigned unique ID for this managed resource.
- ssl
Vpn List<SslClient Certs Vpn Client Certs Ssl Vpn Client Cert> - The collection of of ssl vpn client certs.
- total
Count Integer - The total count of ssl vpn client cert query.
- ids List<String>
- name
Regex String - output
File String - ssl
Vpn StringClient Cert Name - The name of the ssl vpn client cert.
- ssl
Vpn StringServer Id - The id of the ssl vpn server.
- id string
- The provider-assigned unique ID for this managed resource.
- ssl
Vpn SslClient Certs Vpn Client Certs Ssl Vpn Client Cert[] - The collection of of ssl vpn client certs.
- total
Count number - The total count of ssl vpn client cert query.
- ids string[]
- name
Regex string - output
File string - ssl
Vpn stringClient Cert Name - The name of the ssl vpn client cert.
- ssl
Vpn stringServer Id - The id of the ssl vpn server.
- id str
- The provider-assigned unique ID for this managed resource.
- ssl_
vpn_ Sequence[Sslclient_ certs Vpn Client Certs Ssl Vpn Client Cert] - The collection of of ssl vpn client certs.
- total_
count int - The total count of ssl vpn client cert query.
- ids Sequence[str]
- name_
regex str - output_
file str - ssl_
vpn_ strclient_ cert_ name - The name of the ssl vpn client cert.
- ssl_
vpn_ strserver_ id - The id of the ssl vpn server.
- id String
- The provider-assigned unique ID for this managed resource.
- ssl
Vpn List<Property Map>Client Certs - The collection of of ssl vpn client certs.
- total
Count Number - The total count of ssl vpn client cert query.
- ids List<String>
- name
Regex String - output
File String - ssl
Vpn StringClient Cert Name - The name of the ssl vpn client cert.
- ssl
Vpn StringServer Id - The id of the ssl vpn server.
Supporting Types
SslVpnClientCertsSslVpnClientCert
- Ca
Certificate string - The CA certificate.
- Certificate
Status string - The status of the ssl vpn client cert.
- Client
Certificate string - The client certificate.
- Client
Key string - The key of the ssl vpn client.
- Creation
Time string - The creation time of the ssl vpn client cert.
- Description string
- The description of the ssl vpn client cert.
- Expired
Time string - The expired time of the ssl vpn client cert.
- Id string
- The id of the ssl vpn client cert.
- Open
Vpn stringClient Config - The config of the open vpn client.
- Ssl
Vpn stringClient Cert Id - The id of the ssl vpn client cert.
- Ssl
Vpn stringClient Cert Name - The name of the ssl vpn client cert.
- Ssl
Vpn stringServer Id - The id of the ssl vpn server.
- Status string
- The status of the ssl vpn client.
- Update
Time string - The update time of the ssl vpn client cert.
- Ca
Certificate string - The CA certificate.
- Certificate
Status string - The status of the ssl vpn client cert.
- Client
Certificate string - The client certificate.
- Client
Key string - The key of the ssl vpn client.
- Creation
Time string - The creation time of the ssl vpn client cert.
- Description string
- The description of the ssl vpn client cert.
- Expired
Time string - The expired time of the ssl vpn client cert.
- Id string
- The id of the ssl vpn client cert.
- Open
Vpn stringClient Config - The config of the open vpn client.
- Ssl
Vpn stringClient Cert Id - The id of the ssl vpn client cert.
- Ssl
Vpn stringClient Cert Name - The name of the ssl vpn client cert.
- Ssl
Vpn stringServer Id - The id of the ssl vpn server.
- Status string
- The status of the ssl vpn client.
- Update
Time string - The update time of the ssl vpn client cert.
- ca
Certificate String - The CA certificate.
- certificate
Status String - The status of the ssl vpn client cert.
- client
Certificate String - The client certificate.
- client
Key String - The key of the ssl vpn client.
- creation
Time String - The creation time of the ssl vpn client cert.
- description String
- The description of the ssl vpn client cert.
- expired
Time String - The expired time of the ssl vpn client cert.
- id String
- The id of the ssl vpn client cert.
- open
Vpn StringClient Config - The config of the open vpn client.
- ssl
Vpn StringClient Cert Id - The id of the ssl vpn client cert.
- ssl
Vpn StringClient Cert Name - The name of the ssl vpn client cert.
- ssl
Vpn StringServer Id - The id of the ssl vpn server.
- status String
- The status of the ssl vpn client.
- update
Time String - The update time of the ssl vpn client cert.
- ca
Certificate string - The CA certificate.
- certificate
Status string - The status of the ssl vpn client cert.
- client
Certificate string - The client certificate.
- client
Key string - The key of the ssl vpn client.
- creation
Time string - The creation time of the ssl vpn client cert.
- description string
- The description of the ssl vpn client cert.
- expired
Time string - The expired time of the ssl vpn client cert.
- id string
- The id of the ssl vpn client cert.
- open
Vpn stringClient Config - The config of the open vpn client.
- ssl
Vpn stringClient Cert Id - The id of the ssl vpn client cert.
- ssl
Vpn stringClient Cert Name - The name of the ssl vpn client cert.
- ssl
Vpn stringServer Id - The id of the ssl vpn server.
- status string
- The status of the ssl vpn client.
- update
Time string - The update time of the ssl vpn client cert.
- ca_
certificate str - The CA certificate.
- certificate_
status str - The status of the ssl vpn client cert.
- client_
certificate str - The client certificate.
- client_
key str - The key of the ssl vpn client.
- creation_
time str - The creation time of the ssl vpn client cert.
- description str
- The description of the ssl vpn client cert.
- expired_
time str - The expired time of the ssl vpn client cert.
- id str
- The id of the ssl vpn client cert.
- open_
vpn_ strclient_ config - The config of the open vpn client.
- ssl_
vpn_ strclient_ cert_ id - The id of the ssl vpn client cert.
- ssl_
vpn_ strclient_ cert_ name - The name of the ssl vpn client cert.
- ssl_
vpn_ strserver_ id - The id of the ssl vpn server.
- status str
- The status of the ssl vpn client.
- update_
time str - The update time of the ssl vpn client cert.
- ca
Certificate String - The CA certificate.
- certificate
Status String - The status of the ssl vpn client cert.
- client
Certificate String - The client certificate.
- client
Key String - The key of the ssl vpn client.
- creation
Time String - The creation time of the ssl vpn client cert.
- description String
- The description of the ssl vpn client cert.
- expired
Time String - The expired time of the ssl vpn client cert.
- id String
- The id of the ssl vpn client cert.
- open
Vpn StringClient Config - The config of the open vpn client.
- ssl
Vpn StringClient Cert Id - The id of the ssl vpn client cert.
- ssl
Vpn StringClient Cert Name - The name of the ssl vpn client cert.
- ssl
Vpn StringServer Id - The id of the ssl vpn server.
- status String
- The status of the ssl vpn client.
- update
Time String - The update time of the ssl vpn client cert.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.