layout | page_title | sidebar_current | description |
---|---|---|---|
cloudstack |
CloudStack: cloudstack_vpc |
docs-cloudstack-resource-vpc |
Creates a VPC. |
Creates a VPC.
Basic usage:
resource "cloudstack_vpc" "default" {
name = "test-vpc"
cidr = "10.0.0.0/16"
vpc_offering = "Default VPC Offering"
zone = "zone-1"
}
The following arguments are supported:
-
name
- (Required) The name of the VPC. -
display_text
- (Optional) The display text of the VPC. -
cidr
- (Required) The CIDR block for the VPC. Changing this forces a new resource to be created. -
vpc_offering
- (Required) The name or ID of the VPC offering to use for this VPC. Changing this forces a new resource to be created. -
network_domain
- (Optional) The default DNS domain for networks created in this VPC. 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. -
zone
- (Required) The name or ID of the zone where this disk volume will be available. Changing this forces a new resource to be created.
The following attributes are exported:
id
- The ID of the VPC.display_text
- The display text of the VPC.source_nat_ip
- The source NAT IP assigned to the VPC.
VPCs can be imported; use <VPC ID>
as the import ID. For
example:
terraform import cloudstack_vpc.default 84b23264-917a-4712-b8bf-cd7604db43b0
When importing into a project you need to prefix the import ID with the project name:
terraform import cloudstack_vpc.default my-project/84b23264-917a-4712-b8bf-cd7604db43b0