github.com/ezbercih/terraform@v0.1.1-0.20140729011846-3c33865e0839/website/source/docs/providers/aws/r/vpc.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: aws_vpc" 4 sidebar_current: "docs-aws-resource-vpc" 5 --- 6 7 # aws\_vpc 8 9 Provides an VPC resource. 10 11 ## Example Usage 12 13 ``` 14 resource "aws_vpc" "main" { 15 cidr_block = "10.0.0.0/16" 16 } 17 ``` 18 19 ## Argument Reference 20 21 The following arguments are supported: 22 23 * `cidr_block` - (Required) The CIDR block for the VPC. 24 25 ## Attributes Reference 26 27 The following attributes are exported: 28 29 * `id` - The ID of the VPC 30 * `cidr_block` - The CIDR block of the VPC 31