» cloudstack_ipaddress
Acquires and associates a public IP.
» Example Usage
resource "cloudstack_ipaddress" "default" {
network_id = "6eb22f91-7454-4107-89f4-36afcdf33021"
}
» Argument Reference
The following arguments are supported:
-
is_portable
- (Optional) This determines if the IP address should be transferable across zones (defaults false) -
network_id
- (Optional) The ID of the network for which an IP address should be acquired and associated. Changing this forces a new resource to be created. -
vpc_id
- (Optional) The ID of the VPC for which an IP address should be acquired and associated. Changing this forces a new resource to be created. -
zone
- (Optional) The name or ID of the zone for which an IP address should be acquired and associated. Changing this forces a new resource to be created. -
project
- (Optional) The name or ID of the project to deploy this instance to. Changing this forces a new resource to be created.
NOTE: network_id
and/or zone
should have a value when is_portable
is false
!
NOTE: Either network_id
or vpc_id
should have a value when is_portable
is true
!
» Attributes Reference
The following attributes are exported:
-
id
- The ID of the acquired and associated IP address. -
ip_address
- The IP address that was acquired and associated.