We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3531e42 commit b6d9059Copy full SHA for b6d9059
examples/vpc_basic/main.tf
@@ -10,8 +10,8 @@ module "example" {
10
source ="../.."
11
12
// VPC
13
- name = "testVPC"
14
- description = "testVPC description"
+ name = "testVPC"
+ cidr = "10.0.0.0/16"
15
16
// VPC Subnet
17
subnets = [
@@ -24,7 +24,7 @@ module "example" {
24
name = "testSubnet-2"
25
cidr = "10.0.2.0/24"
26
gateway_ip = "10.0.2.1"
27
- availability_zone = "cn-north-1"
+ availability_zone = "cn-north-1a"
28
},
29
{
30
name = "tetSubnet-3"
examples/vpc_with_existing_vpc_id/main.tf
@@ -27,7 +27,7 @@ module "example" {
31
32
33
0 commit comments