Skip to content

Commit

Permalink
Bump vpc module to modern version
Browse files Browse the repository at this point in the history
  • Loading branch information
dpiddock committed Aug 14, 2020
1 parent 1bd5bf5 commit 0854249
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ resource "aws_security_group" "all_worker_mgmt" {

module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "2.6.0"
version = "2.47.0"

name = "test-vpc"
cidr = "10.0.0.0/16"
Expand Down
2 changes: 1 addition & 1 deletion examples/irsa/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ data "aws_caller_identity" "current" {}

module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "2.6.0"
version = "2.47.0"
name = "test-vpc"
cidr = "10.0.0.0/16"
azs = data.aws_availability_zones.available.names
Expand Down
2 changes: 1 addition & 1 deletion examples/launch_templates/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ resource "random_string" "suffix" {

module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "2.6.0"
version = "2.47.0"

name = "test-vpc-lt"
cidr = "10.0.0.0/16"
Expand Down
2 changes: 1 addition & 1 deletion examples/managed_node_groups/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ resource "random_string" "suffix" {

module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "~> 2.6"
version = "2.47.0"

name = "test-vpc"
cidr = "172.16.0.0/16"
Expand Down
2 changes: 1 addition & 1 deletion examples/secrets_encryption/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ resource "aws_kms_key" "eks" {

module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "2.6.0"
version = "2.47.0"

name = "test-vpc"
cidr = "10.0.0.0/16"
Expand Down
2 changes: 1 addition & 1 deletion examples/spot_instances/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ resource "random_string" "suffix" {

module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "2.6.0"
version = "2.47.0"

name = "test-vpc-spot"
cidr = "10.0.0.0/16"
Expand Down

0 comments on commit 0854249

Please sign in to comment.