Skip to content

Commit

Permalink
Merge pull request #37 from transcend-io/dmattia/0.14_2
Browse files Browse the repository at this point in the history
bump alb versions
  • Loading branch information
dmattia authored Dec 4, 2020
2 parents 86bac97 + 028270e commit eb96d94
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.9.0"
version = "5.10.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.16.0"
version = "3.17.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.9.0"
version = "5.10.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.16.0"
version = "3.17.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.9.0"
version = "5.10.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.16.0"
version = "3.17.0"

create = ! var.use_private_load_balancer

Expand Down

0 comments on commit eb96d94

Please sign in to comment.