SslVpnClientCert

class SslVpnClientCert : KotlinCustomResource

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.vpn.SslVpnClientCert;
import com.pulumi.alicloud.vpn.SslVpnClientCertArgs;
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) {
var foo = new SslVpnClientCert("foo", SslVpnClientCertArgs.builder()
.sslVpnServerId("ssl_vpn_server_fake_id")
.build());
}
}

Import

SSL-VPN client certificates can be imported using the id, e.g.

$ pulumi import alicloud:vpn/sslVpnClientCert:SslVpnClientCert example vsc-abc123456

Properties

Link copied to clipboard
val caCert: Output<String>

The client ca cert.

Link copied to clipboard
val clientCert: Output<String>

The client cert.

Link copied to clipboard
val clientConfig: Output<String>

The vpn client config.

Link copied to clipboard
val clientKey: Output<String>

The client key.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the client certificate.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val sslVpnServerId: Output<String>

The ID of the SSL-VPN server.

Link copied to clipboard
val status: Output<String>

The status of the client certificate.

Link copied to clipboard
val urn: Output<String>