alicloud_bastionhost_host
更新时间:
Provides a Bastion Host Host resource.
For information about Bastion Host Host and how to use it, see What is Host.
-> NOTE: Available since v1.135.0.
Example Usage
Basic Usage
variable "name" {
default = "tf_example"
}
data "alicloud_zones" "default" {
available_resource_creation = "VSwitch"
}
data "alicloud_vpcs" "default" {
name_regex = "^default-NODELETING$"
cidr_block = "10.4.0.0/16"
}
data "alicloud_vswitches" "default" {
cidr_block = "10.4.0.0/24"
vpc_id = data.alicloud_vpcs.default.ids.0
zone_id = data.alicloud_zones.default.zones.0.id
}
resource "alicloud_security_group" "default" {
vpc_id = data.alicloud_vpcs.default.ids.0
}
resource "alicloud_bastionhost_instance" "default" {
description = var.name
license_code = "bhah_ent_50_asset"
plan_code = "cloudbastion"
storage = "5"
bandwidth = "5"
period = "1"
vswitch_id = data.alicloud_vswitches.default.ids[0]
security_group_ids = [alicloud_security_group.default.id]
}
resource "alicloud_bastionhost_host" "default" {
instance_id = alicloud_bastionhost_instance.default.id
host_name = var.name
active_address_type = "Private"
host_private_address = "172.16.0.10"
os_type = "Linux"
source = "Local"
}
Argument Reference
The following arguments are supported:
active_address_type
- (Required) Specify the new create a host of address types. Valid values:Public
: the IP address of a Public network.Private
: Private network address.comment
- (Optional) Specify a host of notes, supports up to 500 characters.host_name
- (Required) Specify the new create a host name of the supports up to 128 characters.host_private_address
- (Optional) Specify the new create a host of the private network address, it is possible to use the domain name or IP ADDRESS. NOTE: This parameter is required if theactive_address_type
parameter is set toPrivate
.host_public_address
- (Optional) Specify the new create a host of the IP address of a public network, it is possible to use the domain name or IP ADDRESS.instance_id
- (Required, ForceNew) Specify the new create a host where the Bastion host ID of.instance_region_id
- (Optional) The instance region id.os_type
- (Required) Specify the new create the host's operating system. Valid values:Linux
,Windows
.source
- (Required, ForceNew) Specify the new create a host of source. Valid values:Local
: localhostEcs
:ECS instanceRds
:RDS exclusive cluster host.
source_instance_id
- (Optional, ForceNew) Specify the newly created ECS instance ID or dedicated cluster host ID. NOTE: This parameter is required if thesource
parameter is set toEcs
orRds
.
Attributes Reference
The following attributes are exported:
id
- The resource ID of Host. The value formats as<instance_id>:<host_id>
.host_id
- The host ID.
Import
Bastion Host Host can be imported using the id, e.g.
$ terraform import alicloud_bastionhost_host.example <instance_id>:<host_id>
文档内容是否对您有帮助?