Skip to content

Commit b6d9059

Browse files
committed
Fix examples
1 parent 3531e42 commit b6d9059

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/vpc_basic/main.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ module "example" {
1010
source ="../.."
1111

1212
// VPC
13-
name = "testVPC"
14-
description = "testVPC description"
13+
name = "testVPC"
14+
cidr = "10.0.0.0/16"
1515

1616
// VPC Subnet
1717
subnets = [
@@ -24,7 +24,7 @@ module "example" {
2424
name = "testSubnet-2"
2525
cidr = "10.0.2.0/24"
2626
gateway_ip = "10.0.2.1"
27-
availability_zone = "cn-north-1"
27+
availability_zone = "cn-north-1a"
2828
},
2929
{
3030
name = "tetSubnet-3"

examples/vpc_with_existing_vpc_id/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module "example" {
2727
name = "testSubnet-2"
2828
cidr = "10.0.2.0/24"
2929
gateway_ip = "10.0.2.1"
30-
availability_zone = "cn-north-1"
30+
availability_zone = "cn-north-1a"
3131
},
3232
{
3333
name = "tetSubnet-3"

0 commit comments

Comments
 (0)