Skip to content

Commit

Permalink
Merge pull request #30 from transcend-io/dmattia/bump_versions
Browse files Browse the repository at this point in the history
bump some versions
  • Loading branch information
dmattia authored Oct 23, 2020
2 parents 78afe52 + 03dfdbe commit b589713
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions modules/sombra_load_balancers/separate_albs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

module internal_load_balancer {
source = "terraform-aws-modules/alb/aws"
version = "5.0.0"
version = "5.9.0"

create_lb = var.use_private_load_balancer

Expand Down Expand Up @@ -49,7 +49,7 @@ module internal_load_balancer {

module "internal_security_group" {
source = "terraform-aws-modules/security-group/aws"
version = "3.4.0"
version = "3.16.0"

create = var.use_private_load_balancer

Expand Down Expand Up @@ -108,7 +108,7 @@ resource "aws_route53_record" "alb_alias" {

module external_load_balancer {
source = "terraform-aws-modules/alb/aws"
version = "5.0.0"
version = "5.9.0"

create_lb = var.use_private_load_balancer

Expand Down Expand Up @@ -149,7 +149,7 @@ module external_load_balancer {

module "external_security_group" {
source = "terraform-aws-modules/security-group/aws"
version = "3.4.0"
version = "3.16.0"

create = var.use_private_load_balancer

Expand Down
4 changes: 2 additions & 2 deletions modules/sombra_load_balancers/single_alb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ locals {

module load_balancer {
source = "terraform-aws-modules/alb/aws"
version = "5.0.0"
version = "5.9.0"

create_lb = ! var.use_private_load_balancer

Expand Down Expand Up @@ -78,7 +78,7 @@ module load_balancer {

module "single_security_group" {
source = "terraform-aws-modules/security-group/aws"
version = "3.4.0"
version = "3.16.0"

create = ! var.use_private_load_balancer

Expand Down

0 comments on commit b589713

Please sign in to comment.