Skip to content

Commit 784f889

Browse files
committed
Update to version 6.x of terraform-aws-vpc to fix warnings about deprecated attributes with version 6.x of AWS provider
1 parent 97db8e3 commit 784f889

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

examples/event-source-mapping/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Note that this example may create resources which cost money. Run `terraform des
3535
| Name | Source | Version |
3636
|------|--------|---------|
3737
| <a name="module_lambda_function"></a> [lambda\_function](#module\_lambda\_function) | ../../ | n/a |
38-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
38+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
3939

4040
## Resources
4141

examples/event-source-mapping/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ resource "aws_kinesis_stream" "this" {
241241
# Amazon MQ
242242
module "vpc" {
243243
source = "terraform-aws-modules/vpc/aws"
244-
version = "~> 5.0"
244+
version = "~> 6.0"
245245

246246
name = random_pet.this.id
247247
cidr = local.vpc_cidr

examples/with-efs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Note that this example may create resources which cost money. Run `terraform des
3636
| Name | Source | Version |
3737
|------|--------|---------|
3838
| <a name="module_lambda_function_with_efs"></a> [lambda\_function\_with\_efs](#module\_lambda\_function\_with\_efs) | ../../ | n/a |
39-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
39+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
4040

4141
## Resources
4242

examples/with-efs/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module "lambda_function_with_efs" {
4444

4545
module "vpc" {
4646
source = "terraform-aws-modules/vpc/aws"
47-
version = "~> 5.0"
47+
version = "~> 6.0"
4848

4949
name = random_pet.this.id
5050
cidr = "10.10.0.0/16"

examples/with-vpc-s3-endpoint/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Note that this example may create resources which cost money. Run `terraform des
4040
| <a name="module_lambda_s3_write"></a> [lambda\_s3\_write](#module\_lambda\_s3\_write) | ../../ | n/a |
4141
| <a name="module_s3_bucket"></a> [s3\_bucket](#module\_s3\_bucket) | terraform-aws-modules/s3-bucket/aws | ~> 5.0 |
4242
| <a name="module_security_group_lambda"></a> [security\_group\_lambda](#module\_security\_group\_lambda) | terraform-aws-modules/security-group/aws | ~> 4.0 |
43-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
44-
| <a name="module_vpc_endpoints"></a> [vpc\_endpoints](#module\_vpc\_endpoints) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | ~> 5.0 |
43+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
44+
| <a name="module_vpc_endpoints"></a> [vpc\_endpoints](#module\_vpc\_endpoints) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | ~> 6.0 |
4545

4646
## Resources
4747

examples/with-vpc-s3-endpoint/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ data "aws_ec2_managed_prefix_list" "this" {
5959

6060
module "vpc" {
6161
source = "terraform-aws-modules/vpc/aws"
62-
version = "~> 5.0"
62+
version = "~> 6.0"
6363

6464
name = random_pet.this.id
6565
cidr = "10.0.0.0/16"
@@ -101,7 +101,7 @@ module "vpc" {
101101

102102
module "vpc_endpoints" {
103103
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
104-
version = "~> 5.0"
104+
version = "~> 6.0"
105105

106106
vpc_id = module.vpc.vpc_id
107107

examples/with-vpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Note that this example may create resources which cost money. Run `terraform des
3636
| Name | Source | Version |
3737
|------|--------|---------|
3838
| <a name="module_lambda_function_in_vpc"></a> [lambda\_function\_in\_vpc](#module\_lambda\_function\_in\_vpc) | ../../ | n/a |
39-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
39+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
4040

4141
## Resources
4242

examples/with-vpc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module "lambda_function_in_vpc" {
3030

3131
module "vpc" {
3232
source = "terraform-aws-modules/vpc/aws"
33-
version = "~> 5.0"
33+
version = "~> 6.0"
3434

3535
name = random_pet.this.id
3636
cidr = "10.10.0.0/16"

0 commit comments

Comments
 (0)