alicloud_vpc_nat_ip
更新时间:
Provides a VPC Nat Ip resource.
For information about VPC Nat Ip and how to use it, see What is Nat Ip.
-> NOTE: Available since v1.136.0.
Example Usage
Basic Usage
data "alicloud_zones" "example" {
  available_resource_creation = "VSwitch"
}
resource "alicloud_vpc" "example" {
  vpc_name   = "terraform-example"
  cidr_block = "172.16.0.0/12"
}
resource "alicloud_vswitch" "example" {
  vpc_id       = alicloud_vpc.example.id
  cidr_block   = "172.16.0.0/21"
  zone_id      = data.alicloud_zones.example.zones.0.id
  vswitch_name = "terraform-example"
}
resource "alicloud_nat_gateway" "example" {
  vpc_id               = alicloud_vpc.example.id
  internet_charge_type = "PayByLcu"
  nat_gateway_name     = "terraform-example"
  description          = "terraform-example"
  nat_type             = "Enhanced"
  vswitch_id           = alicloud_vswitch.example.id
  network_type         = "intranet"
}
resource "alicloud_vpc_nat_ip_cidr" "example" {
  nat_ip_cidr             = "192.168.0.0/16"
  nat_gateway_id          = alicloud_nat_gateway.example.id
  nat_ip_cidr_description = "terraform-example"
  nat_ip_cidr_name        = "terraform-example"
}
resource "alicloud_vpc_nat_ip" "example" {
  nat_ip             = "192.168.0.37"
  nat_gateway_id     = alicloud_nat_gateway.example.id
  nat_ip_description = "example_value"
  nat_ip_name        = "example_value"
  nat_ip_cidr        = alicloud_vpc_nat_ip_cidr.example.nat_ip_cidr
}
Argument Reference
The following arguments are supported:
dry_run- (Optional, Computed) Specifies whether to check the validity of the request without actually making the request.nat_gateway_id- (Required, ForceNew) The ID of the Virtual Private Cloud (VPC) NAT gateway for which you want to create the NAT IP address.nat_ip- (Optional, ForceNew, Computed) The NAT IP address that you want to create. If you do not specify an IP address, the system selects a random IP address from the specified CIDR block.nat_ip_cidr- (Optional, ForceNew) NAT IP ADDRESS of the address segment.nat_ip_cidr_id- (Optional) The ID of the CIDR block to which the NAT IP address belongs.nat_ip_description- (Optional) NAT IP ADDRESS description of information. Length is from2to256characters, must start with a letter or the Chinese at the beginning, but not at thehttp://Orhttps://at the beginning.nat_ip_name- (Optional) NAT IP ADDRESS the name of the root directory. Length is from2to128characters, must start with a letter or the Chinese at the beginning can contain numbers, half a period (.), underscore (_) and dash (-). But do not start withhttp://orhttps://at the beginning.
Attributes Reference
The following attributes are exported:
id- The resource ID in terraform of Nat Ip. The value formats as<nat_gateway_id>:<nat_ip_id>.nat_ip_id- Ihe ID of the Nat Ip.status- The status of the NAT IP address. Valid values:Available,Deleting,CreatingandDeleted.
Timeouts
The timeouts block allows you to specify timeouts for certain actions:
create- (Defaults to 1 mins) Used when create the Nat Ip.delete- (Defaults to 1 mins) Used when delete the Nat Ip.
Import
VPC Nat Ip can be imported using the id, e.g.
$ terraform import alicloud_vpc_nat_ip.example <nat_gateway_id>:<nat_ip_id>
该文章对您有帮助吗?