Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update TF provider and module versions #8

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
118 changes: 59 additions & 59 deletions ecs-cluster/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions ecs-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@ terraform {
# by running `terraform init -backend=false -upgrade`
aws = {
source = "hashicorp/aws"
version = "~> 4.25"
version = "~> 5.26"
}

http = {
source = "hashicorp/http"
version = "~> 2.2"
version = "~> 3.4"
}

random = {
source = "hashicorp/random"
version = "~> 3.3"
version = "~> 3.5"
}

local = {
source = "hashicorp/local"
version = "~> 2.2"
version = "~> 2.4"
}
}

required_version = ">= 1.2.5"
required_version = ">= 1.5.0"
}

7 changes: 6 additions & 1 deletion ecs-cluster/vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ data "aws_availability_zones" "available" {}

module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "3.14.2"
version = "5.2.0"

name = "${var.name}-vpc"
cidr = "10.199.0.0/16"
Expand All @@ -12,4 +12,9 @@ module "vpc" {
enable_nat_gateway = true
single_nat_gateway = true
enable_dns_hostnames = true

manage_default_security_group = false
manage_default_route_table = false
manage_default_network_acl = false
map_public_ip_on_launch = true
}
Loading