tencentcloud 1.82.50 published on Tuesday, Dec 30, 2025 by tencentcloudstack
tencentcloud 1.82.50 published on Tuesday, Dec 30, 2025 by tencentcloudstack
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.BhResource("example", {
deployRegion: "ap-guangzhou",
vpcId: "vpc-q1of50wz",
subnetId: "subnet-7uhvm46o",
resourceEdition: "standard",
resourceNode: 20,
timeUnit: "m",
timeSpan: 1,
payMode: 1,
autoRenewFlag: 1,
deployZone: "ap-guangzhou-6",
cidrBlock: "192.168.11.0/24",
vpcCidrBlock: "192.168.0.0/16",
intranetAccess: 1,
externalAccess: 1,
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.BhResource("example",
deploy_region="ap-guangzhou",
vpc_id="vpc-q1of50wz",
subnet_id="subnet-7uhvm46o",
resource_edition="standard",
resource_node=20,
time_unit="m",
time_span=1,
pay_mode=1,
auto_renew_flag=1,
deploy_zone="ap-guangzhou-6",
cidr_block="192.168.11.0/24",
vpc_cidr_block="192.168.0.0/16",
intranet_access=1,
external_access=1)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewBhResource(ctx, "example", &tencentcloud.BhResourceArgs{
DeployRegion: pulumi.String("ap-guangzhou"),
VpcId: pulumi.String("vpc-q1of50wz"),
SubnetId: pulumi.String("subnet-7uhvm46o"),
ResourceEdition: pulumi.String("standard"),
ResourceNode: pulumi.Float64(20),
TimeUnit: pulumi.String("m"),
TimeSpan: pulumi.Float64(1),
PayMode: pulumi.Float64(1),
AutoRenewFlag: pulumi.Float64(1),
DeployZone: pulumi.String("ap-guangzhou-6"),
CidrBlock: pulumi.String("192.168.11.0/24"),
VpcCidrBlock: pulumi.String("192.168.0.0/16"),
IntranetAccess: pulumi.Float64(1),
ExternalAccess: pulumi.Float64(1),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = new Tencentcloud.BhResource("example", new()
{
DeployRegion = "ap-guangzhou",
VpcId = "vpc-q1of50wz",
SubnetId = "subnet-7uhvm46o",
ResourceEdition = "standard",
ResourceNode = 20,
TimeUnit = "m",
TimeSpan = 1,
PayMode = 1,
AutoRenewFlag = 1,
DeployZone = "ap-guangzhou-6",
CidrBlock = "192.168.11.0/24",
VpcCidrBlock = "192.168.0.0/16",
IntranetAccess = 1,
ExternalAccess = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.BhResource;
import com.pulumi.tencentcloud.BhResourceArgs;
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 example = new BhResource("example", BhResourceArgs.builder()
.deployRegion("ap-guangzhou")
.vpcId("vpc-q1of50wz")
.subnetId("subnet-7uhvm46o")
.resourceEdition("standard")
.resourceNode(20.0)
.timeUnit("m")
.timeSpan(1.0)
.payMode(1.0)
.autoRenewFlag(1.0)
.deployZone("ap-guangzhou-6")
.cidrBlock("192.168.11.0/24")
.vpcCidrBlock("192.168.0.0/16")
.intranetAccess(1.0)
.externalAccess(1.0)
.build());
}
}
resources:
example:
type: tencentcloud:BhResource
properties:
deployRegion: ap-guangzhou
vpcId: vpc-q1of50wz
subnetId: subnet-7uhvm46o
resourceEdition: standard
resourceNode: 20
timeUnit: m
timeSpan: '1'
payMode: 1
autoRenewFlag: 1
deployZone: ap-guangzhou-6
cidrBlock: 192.168.11.0/24
vpcCidrBlock: 192.168.0.0/16
intranetAccess: 1
externalAccess: 1
Create BhResource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BhResource(name: string, args: BhResourceArgs, opts?: CustomResourceOptions);@overload
def BhResource(resource_name: str,
args: BhResourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BhResource(resource_name: str,
opts: Optional[ResourceOptions] = None,
pay_mode: Optional[float] = None,
resource_node: Optional[float] = None,
cidr_block: Optional[str] = None,
resource_edition: Optional[str] = None,
deploy_region: Optional[str] = None,
deploy_zone: Optional[str] = None,
vpc_id: Optional[str] = None,
vpc_cidr_block: Optional[str] = None,
time_unit: Optional[str] = None,
auto_renew_flag: Optional[float] = None,
time_span: Optional[float] = None,
subnet_id: Optional[str] = None,
share_clb: Optional[float] = None,
client_access: Optional[float] = None,
bh_resource_id: Optional[str] = None,
trial: Optional[float] = None,
intranet_access: Optional[float] = None,
external_access: Optional[float] = None,
web_access: Optional[float] = None)func NewBhResource(ctx *Context, name string, args BhResourceArgs, opts ...ResourceOption) (*BhResource, error)public BhResource(string name, BhResourceArgs args, CustomResourceOptions? opts = null)
public BhResource(String name, BhResourceArgs args)
public BhResource(String name, BhResourceArgs args, CustomResourceOptions options)
type: tencentcloud:BhResource
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BhResourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BhResourceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BhResourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BhResourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BhResourceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
BhResource Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BhResource resource accepts the following input properties:
- Auto
Renew doubleFlag - Auto-renewal.
- Cidr
Block string - CIDR block of the bastion host.
- Deploy
Region string - Deployment region.
- Deploy
Zone string - Deployment zone.
- Pay
Mode double - Billing mode, 1 for prepaid.
- Resource
Edition string - Resource type. Values: standard/pro.
- Resource
Node double - Number of resource nodes.
- Subnet
Id string - Subnet ID for deploying the bastion host.
- Time
Span double - Billing duration.
- Time
Unit string - Billing cycle.
- Vpc
Cidr stringBlock - The network segment corresponding to the VPC that needs to activate the service.
- Vpc
Id string - VPC ID for deploying the bastion host.
- Bh
Resource stringId - ID of the resource.
- Client
Access double - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- External
Access double - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- Intranet
Access double - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- double
- Whether to share CLB, 0: not shared, 1: shared.
- Trial double
- 0 for non-trial version, 1 for trial version.
- Web
Access double - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
- Auto
Renew float64Flag - Auto-renewal.
- Cidr
Block string - CIDR block of the bastion host.
- Deploy
Region string - Deployment region.
- Deploy
Zone string - Deployment zone.
- Pay
Mode float64 - Billing mode, 1 for prepaid.
- Resource
Edition string - Resource type. Values: standard/pro.
- Resource
Node float64 - Number of resource nodes.
- Subnet
Id string - Subnet ID for deploying the bastion host.
- Time
Span float64 - Billing duration.
- Time
Unit string - Billing cycle.
- Vpc
Cidr stringBlock - The network segment corresponding to the VPC that needs to activate the service.
- Vpc
Id string - VPC ID for deploying the bastion host.
- Bh
Resource stringId - ID of the resource.
- Client
Access float64 - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- External
Access float64 - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- Intranet
Access float64 - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- float64
- Whether to share CLB, 0: not shared, 1: shared.
- Trial float64
- 0 for non-trial version, 1 for trial version.
- Web
Access float64 - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
- auto
Renew DoubleFlag - Auto-renewal.
- cidr
Block String - CIDR block of the bastion host.
- deploy
Region String - Deployment region.
- deploy
Zone String - Deployment zone.
- pay
Mode Double - Billing mode, 1 for prepaid.
- resource
Edition String - Resource type. Values: standard/pro.
- resource
Node Double - Number of resource nodes.
- subnet
Id String - Subnet ID for deploying the bastion host.
- time
Span Double - Billing duration.
- time
Unit String - Billing cycle.
- vpc
Cidr StringBlock - The network segment corresponding to the VPC that needs to activate the service.
- vpc
Id String - VPC ID for deploying the bastion host.
- bh
Resource StringId - ID of the resource.
- client
Access Double - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- external
Access Double - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- intranet
Access Double - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- Double
- Whether to share CLB, 0: not shared, 1: shared.
- trial Double
- 0 for non-trial version, 1 for trial version.
- web
Access Double - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
- auto
Renew numberFlag - Auto-renewal.
- cidr
Block string - CIDR block of the bastion host.
- deploy
Region string - Deployment region.
- deploy
Zone string - Deployment zone.
- pay
Mode number - Billing mode, 1 for prepaid.
- resource
Edition string - Resource type. Values: standard/pro.
- resource
Node number - Number of resource nodes.
- subnet
Id string - Subnet ID for deploying the bastion host.
- time
Span number - Billing duration.
- time
Unit string - Billing cycle.
- vpc
Cidr stringBlock - The network segment corresponding to the VPC that needs to activate the service.
- vpc
Id string - VPC ID for deploying the bastion host.
- bh
Resource stringId - ID of the resource.
- client
Access number - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- external
Access number - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- intranet
Access number - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- number
- Whether to share CLB, 0: not shared, 1: shared.
- trial number
- 0 for non-trial version, 1 for trial version.
- web
Access number - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
- auto_
renew_ floatflag - Auto-renewal.
- cidr_
block str - CIDR block of the bastion host.
- deploy_
region str - Deployment region.
- deploy_
zone str - Deployment zone.
- pay_
mode float - Billing mode, 1 for prepaid.
- resource_
edition str - Resource type. Values: standard/pro.
- resource_
node float - Number of resource nodes.
- subnet_
id str - Subnet ID for deploying the bastion host.
- time_
span float - Billing duration.
- time_
unit str - Billing cycle.
- vpc_
cidr_ strblock - The network segment corresponding to the VPC that needs to activate the service.
- vpc_
id str - VPC ID for deploying the bastion host.
- bh_
resource_ strid - ID of the resource.
- client_
access float - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- external_
access float - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- intranet_
access float - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- float
- Whether to share CLB, 0: not shared, 1: shared.
- trial float
- 0 for non-trial version, 1 for trial version.
- web_
access float - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
- auto
Renew NumberFlag - Auto-renewal.
- cidr
Block String - CIDR block of the bastion host.
- deploy
Region String - Deployment region.
- deploy
Zone String - Deployment zone.
- pay
Mode Number - Billing mode, 1 for prepaid.
- resource
Edition String - Resource type. Values: standard/pro.
- resource
Node Number - Number of resource nodes.
- subnet
Id String - Subnet ID for deploying the bastion host.
- time
Span Number - Billing duration.
- time
Unit String - Billing cycle.
- vpc
Cidr StringBlock - The network segment corresponding to the VPC that needs to activate the service.
- vpc
Id String - VPC ID for deploying the bastion host.
- bh
Resource StringId - ID of the resource.
- client
Access Number - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- external
Access Number - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- intranet
Access Number - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- Number
- Whether to share CLB, 0: not shared, 1: shared.
- trial Number
- 0 for non-trial version, 1 for trial version.
- web
Access Number - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
Outputs
All input properties are implicitly available as output properties. Additionally, the BhResource resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Id string - Resource instance ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Id string - Resource instance ID.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Id String - Resource instance ID.
- id string
- The provider-assigned unique ID for this managed resource.
- resource
Id string - Resource instance ID.
- id str
- The provider-assigned unique ID for this managed resource.
- resource_
id str - Resource instance ID.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Id String - Resource instance ID.
Look up Existing BhResource Resource
Get an existing BhResource resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BhResourceState, opts?: CustomResourceOptions): BhResource@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auto_renew_flag: Optional[float] = None,
bh_resource_id: Optional[str] = None,
cidr_block: Optional[str] = None,
client_access: Optional[float] = None,
deploy_region: Optional[str] = None,
deploy_zone: Optional[str] = None,
external_access: Optional[float] = None,
intranet_access: Optional[float] = None,
pay_mode: Optional[float] = None,
resource_edition: Optional[str] = None,
resource_id: Optional[str] = None,
resource_node: Optional[float] = None,
share_clb: Optional[float] = None,
subnet_id: Optional[str] = None,
time_span: Optional[float] = None,
time_unit: Optional[str] = None,
trial: Optional[float] = None,
vpc_cidr_block: Optional[str] = None,
vpc_id: Optional[str] = None,
web_access: Optional[float] = None) -> BhResourcefunc GetBhResource(ctx *Context, name string, id IDInput, state *BhResourceState, opts ...ResourceOption) (*BhResource, error)public static BhResource Get(string name, Input<string> id, BhResourceState? state, CustomResourceOptions? opts = null)public static BhResource get(String name, Output<String> id, BhResourceState state, CustomResourceOptions options)resources: _: type: tencentcloud:BhResource get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Auto
Renew doubleFlag - Auto-renewal.
- Bh
Resource stringId - ID of the resource.
- Cidr
Block string - CIDR block of the bastion host.
- Client
Access double - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- Deploy
Region string - Deployment region.
- Deploy
Zone string - Deployment zone.
- External
Access double - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- Intranet
Access double - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- Pay
Mode double - Billing mode, 1 for prepaid.
- Resource
Edition string - Resource type. Values: standard/pro.
- Resource
Id string - Resource instance ID.
- Resource
Node double - Number of resource nodes.
- double
- Whether to share CLB, 0: not shared, 1: shared.
- Subnet
Id string - Subnet ID for deploying the bastion host.
- Time
Span double - Billing duration.
- Time
Unit string - Billing cycle.
- Trial double
- 0 for non-trial version, 1 for trial version.
- Vpc
Cidr stringBlock - The network segment corresponding to the VPC that needs to activate the service.
- Vpc
Id string - VPC ID for deploying the bastion host.
- Web
Access double - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
- Auto
Renew float64Flag - Auto-renewal.
- Bh
Resource stringId - ID of the resource.
- Cidr
Block string - CIDR block of the bastion host.
- Client
Access float64 - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- Deploy
Region string - Deployment region.
- Deploy
Zone string - Deployment zone.
- External
Access float64 - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- Intranet
Access float64 - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- Pay
Mode float64 - Billing mode, 1 for prepaid.
- Resource
Edition string - Resource type. Values: standard/pro.
- Resource
Id string - Resource instance ID.
- Resource
Node float64 - Number of resource nodes.
- float64
- Whether to share CLB, 0: not shared, 1: shared.
- Subnet
Id string - Subnet ID for deploying the bastion host.
- Time
Span float64 - Billing duration.
- Time
Unit string - Billing cycle.
- Trial float64
- 0 for non-trial version, 1 for trial version.
- Vpc
Cidr stringBlock - The network segment corresponding to the VPC that needs to activate the service.
- Vpc
Id string - VPC ID for deploying the bastion host.
- Web
Access float64 - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
- auto
Renew DoubleFlag - Auto-renewal.
- bh
Resource StringId - ID of the resource.
- cidr
Block String - CIDR block of the bastion host.
- client
Access Double - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- deploy
Region String - Deployment region.
- deploy
Zone String - Deployment zone.
- external
Access Double - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- intranet
Access Double - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- pay
Mode Double - Billing mode, 1 for prepaid.
- resource
Edition String - Resource type. Values: standard/pro.
- resource
Id String - Resource instance ID.
- resource
Node Double - Number of resource nodes.
- Double
- Whether to share CLB, 0: not shared, 1: shared.
- subnet
Id String - Subnet ID for deploying the bastion host.
- time
Span Double - Billing duration.
- time
Unit String - Billing cycle.
- trial Double
- 0 for non-trial version, 1 for trial version.
- vpc
Cidr StringBlock - The network segment corresponding to the VPC that needs to activate the service.
- vpc
Id String - VPC ID for deploying the bastion host.
- web
Access Double - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
- auto
Renew numberFlag - Auto-renewal.
- bh
Resource stringId - ID of the resource.
- cidr
Block string - CIDR block of the bastion host.
- client
Access number - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- deploy
Region string - Deployment region.
- deploy
Zone string - Deployment zone.
- external
Access number - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- intranet
Access number - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- pay
Mode number - Billing mode, 1 for prepaid.
- resource
Edition string - Resource type. Values: standard/pro.
- resource
Id string - Resource instance ID.
- resource
Node number - Number of resource nodes.
- number
- Whether to share CLB, 0: not shared, 1: shared.
- subnet
Id string - Subnet ID for deploying the bastion host.
- time
Span number - Billing duration.
- time
Unit string - Billing cycle.
- trial number
- 0 for non-trial version, 1 for trial version.
- vpc
Cidr stringBlock - The network segment corresponding to the VPC that needs to activate the service.
- vpc
Id string - VPC ID for deploying the bastion host.
- web
Access number - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
- auto_
renew_ floatflag - Auto-renewal.
- bh_
resource_ strid - ID of the resource.
- cidr_
block str - CIDR block of the bastion host.
- client_
access float - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- deploy_
region str - Deployment region.
- deploy_
zone str - Deployment zone.
- external_
access float - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- intranet_
access float - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- pay_
mode float - Billing mode, 1 for prepaid.
- resource_
edition str - Resource type. Values: standard/pro.
- resource_
id str - Resource instance ID.
- resource_
node float - Number of resource nodes.
- float
- Whether to share CLB, 0: not shared, 1: shared.
- subnet_
id str - Subnet ID for deploying the bastion host.
- time_
span float - Billing duration.
- time_
unit str - Billing cycle.
- trial float
- 0 for non-trial version, 1 for trial version.
- vpc_
cidr_ strblock - The network segment corresponding to the VPC that needs to activate the service.
- vpc_
id str - VPC ID for deploying the bastion host.
- web_
access float - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
- auto
Renew NumberFlag - Auto-renewal.
- bh
Resource StringId - ID of the resource.
- cidr
Block String - CIDR block of the bastion host.
- client
Access Number - 0 - Disable client access to the bastion host; 1 - Enable client access to the bastion host.
- deploy
Region String - Deployment region.
- deploy
Zone String - Deployment zone.
- external
Access Number - 0 - Disable public network access to the bastion host; 1 - Enable public network access to the bastion host.
- intranet
Access Number - 0 - Disable internal network access bastion host; 1 - Enable internal network access bastion host.
- pay
Mode Number - Billing mode, 1 for prepaid.
- resource
Edition String - Resource type. Values: standard/pro.
- resource
Id String - Resource instance ID.
- resource
Node Number - Number of resource nodes.
- Number
- Whether to share CLB, 0: not shared, 1: shared.
- subnet
Id String - Subnet ID for deploying the bastion host.
- time
Span Number - Billing duration.
- time
Unit String - Billing cycle.
- trial Number
- 0 for non-trial version, 1 for trial version.
- vpc
Cidr StringBlock - The network segment corresponding to the VPC that needs to activate the service.
- vpc
Id String - VPC ID for deploying the bastion host.
- web
Access Number - 0 - Disable web access bastion host; 1 - Enable web access bastion host.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
tencentcloud 1.82.50 published on Tuesday, Dec 30, 2025 by tencentcloudstack
