Skip to content

Commit f245a1e

Browse files
authored
Merge pull request #71 from aws-ia/doc-2.0fixes
fix hardcoded versions
2 parents 7b856db + 9dff2f1 commit f245a1e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.header.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The example below builds a VPC with public and private subnets in 3 AZs. Each su
1111
```hcl
1212
module "vpc" {
1313
source = "aws-ia/vpc/aws"
14-
version = ">= 1.0.0"
14+
version = ">= 2.0.0"
1515
1616
name = "multi-az-vpc"
1717
cidr_block = "10.0.0.0/20"
@@ -121,7 +121,7 @@ Example Configuration:
121121
```terraform
122122
module "vpc" {
123123
source = "aws-ia/vpc/aws"
124-
version = ">= 1.0.0"
124+
version = ">= 2.0.0"
125125
126126
name = "multi-az-vpc"
127127
cidr_block = "10.0.0.0/20"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The example below builds a VPC with public and private subnets in 3 AZs. Each su
1212
```hcl
1313
module "vpc" {
1414
source = "aws-ia/vpc/aws"
15-
version = ">= 1.0.0"
15+
version = ">= 2.0.0"
1616
1717
name = "multi-az-vpc"
1818
cidr_block = "10.0.0.0/20"
@@ -122,7 +122,7 @@ Example Configuration:
122122
```terraform
123123
module "vpc" {
124124
source = "aws-ia/vpc/aws"
125-
version = ">= 1.0.0"
125+
version = ">= 2.0.0"
126126
127127
name = "multi-az-vpc"
128128
cidr_block = "10.0.0.0/20"

0 commit comments

Comments
 (0)