Skip to content

Commit

Permalink
Merge pull request #18 from transcend-io/dmattia/lb_ver
Browse files Browse the repository at this point in the history
Fix all terraform module versions to specific value
  • Loading branch information
dmattia authored Apr 2, 2020
2 parents a47024f + 1134982 commit 6293e70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 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"
version = "5.0.0"

create_lb = 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"
version = "5.0.0"

create_lb = var.use_private_load_balancer

Expand Down
2 changes: 1 addition & 1 deletion 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"
version = "5.0.0"

create_lb = ! var.use_private_load_balancer

Expand Down

0 comments on commit 6293e70

Please sign in to comment.