From e5eb901330f94bb0aa546aa8c1f6eb08b44d61b9 Mon Sep 17 00:00:00 2001 From: Sounak Mukherjee Date: Fri, 8 Sep 2023 12:54:16 +0530 Subject: [PATCH 1/3] [update] vpc module version in README.md and minimal_example --- README.md | 4 ++-- examples/minimal/minimal_example.tf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bd6de5f..a503e2b 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ data "aws_availability_zones" "available" { # VPC infra using https://github.com/terraform-aws-modules/terraform-aws-vpc module "vpc" { source = "terraform-aws-modules/vpc/aws" - version = "3.13.0" + version = "5.1.1" name = "${local.resource_prefix}-${local.resource_suffix}" cidr = "10.10.0.0/16" @@ -62,7 +62,7 @@ module "metaflow" { enable_step_functions = false subnet1_id = module.vpc.public_subnets[0] subnet2_id = module.vpc.public_subnets[1] - vpc_cidr_blocks = module.vpc.vpc_cidr_blocks + vpc_cidr_blocks = [module.vpc.vpc_cidr_block] vpc_id = module.vpc.vpc_id with_public_ip = true diff --git a/examples/minimal/minimal_example.tf b/examples/minimal/minimal_example.tf index 22ef4f6..26bd550 100644 --- a/examples/minimal/minimal_example.tf +++ b/examples/minimal/minimal_example.tf @@ -21,7 +21,7 @@ data "aws_availability_zones" "available" { # VPC infra using https://github.com/terraform-aws-modules/terraform-aws-vpc module "vpc" { source = "terraform-aws-modules/vpc/aws" - version = "3.13.0" + version = "5.1.1" name = "${local.resource_prefix}-${local.resource_suffix}" cidr = "10.10.0.0/16" From c3b2d71aaccceffff0b0e4c3f0485231746a487b Mon Sep 17 00:00:00 2001 From: Sounak Mukherjee Date: Fri, 8 Sep 2023 12:58:44 +0530 Subject: [PATCH 2/3] [update] metaflow module version in minimal_example --- examples/minimal/minimal_example.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/minimal/minimal_example.tf b/examples/minimal/minimal_example.tf index 26bd550..e6d44de 100644 --- a/examples/minimal/minimal_example.tf +++ b/examples/minimal/minimal_example.tf @@ -38,7 +38,7 @@ module "vpc" { module "metaflow" { source = "outerbounds/metaflow/aws" - version = "0.9.0" + version = "0.10.0" resource_prefix = local.resource_prefix resource_suffix = local.resource_suffix From 543e4580cd9e3fc2e0d67b7c8d476267e7cda1f9 Mon Sep 17 00:00:00 2001 From: Sounak Mukherjee Date: Fri, 8 Sep 2023 13:04:01 +0530 Subject: [PATCH 3/3] [updated] vpc version in example files --- examples/eks_airflow/vpc.tf | 2 +- examples/eks_argo/vpc.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/eks_airflow/vpc.tf b/examples/eks_airflow/vpc.tf index ebdf1f5..204591e 100644 --- a/examples/eks_airflow/vpc.tf +++ b/examples/eks_airflow/vpc.tf @@ -2,7 +2,7 @@ # VPC infra using https://github.com/terraform-aws-modules/terraform-aws-vpc module "vpc" { source = "terraform-aws-modules/vpc/aws" - version = "3.13.0" + version = "5.1.1" name = "${local.resource_prefix}-${local.resource_suffix}" cidr = "10.10.0.0/16" diff --git a/examples/eks_argo/vpc.tf b/examples/eks_argo/vpc.tf index ebdf1f5..204591e 100644 --- a/examples/eks_argo/vpc.tf +++ b/examples/eks_argo/vpc.tf @@ -2,7 +2,7 @@ # VPC infra using https://github.com/terraform-aws-modules/terraform-aws-vpc module "vpc" { source = "terraform-aws-modules/vpc/aws" - version = "3.13.0" + version = "5.1.1" name = "${local.resource_prefix}-${local.resource_suffix}" cidr = "10.10.0.0/16"