UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

120 lines 4.4 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.sslVpnServersOutput = exports.sslVpnServers = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of ssl vpn servers * ## Example Usage * * ```typescript * 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 fooSslVpnServers = volcengine.vpn.getSslVpnServersOutput({ * ids: [fooSslVpnServer.id], * }); * ``` */ /** @deprecated volcengine.vpn.SslVpnServers has been deprecated in favor of volcengine.vpn.getSslVpnServers */ function sslVpnServers(args, opts) { pulumi.log.warn("sslVpnServers is deprecated: volcengine.vpn.SslVpnServers has been deprecated in favor of volcengine.vpn.getSslVpnServers"); args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:vpn/sslVpnServers:SslVpnServers", { "ids": args.ids, "outputFile": args.outputFile, "sslVpnServerName": args.sslVpnServerName, "vpnGatewayId": args.vpnGatewayId, }, opts); } exports.sslVpnServers = sslVpnServers; /** * Use this data source to query detailed information of ssl vpn servers * ## Example Usage * * ```typescript * 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 fooSslVpnServers = volcengine.vpn.getSslVpnServersOutput({ * ids: [fooSslVpnServer.id], * }); * ``` */ /** @deprecated volcengine.vpn.SslVpnServers has been deprecated in favor of volcengine.vpn.getSslVpnServers */ function sslVpnServersOutput(args, opts) { return pulumi.output(args).apply((a) => sslVpnServers(a, opts)); } exports.sslVpnServersOutput = sslVpnServersOutput; //# sourceMappingURL=sslVpnServers.js.map