Skip to content

Commit

Permalink
Merge pull request #24 from zoitech/fix/lb_group_security_group
Browse files Browse the repository at this point in the history
Fix/lb group security group
  • Loading branch information
Geartrixy authored Jul 31, 2020
2 parents 9db1cc6 + be38739 commit 95a51ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.5

BUG FIX:

* Security group "lb_group" adds an extra dash if its in the variable ([#23](https://github.com/zoitech/terraform-aws-alb/issues/23))
## 1.0.4

ENHANCEMENTS:
Expand Down
2 changes: 1 addition & 1 deletion security_groups.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Security group "group" for loadbalancer with no rules.
#To be used in other security group rules to specify the loadblaancer as the source.
resource "aws_security_group" "lb_group" {
name = "Group-ALB-${var.prefix}-${var.lb_name}"
name = "Group-ALB-${var.prefix}${var.lb_name}"
description = "Attach security group with loadbalancer name to loadbalancer with no rules"
vpc_id = var.vpc_id
}
Expand Down

0 comments on commit 95a51ba

Please sign in to comment.