Skip to content

Commit

Permalink
list(string) bug line 41 in main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
Falpangaea committed Feb 4, 2020
1 parent 5cce88e commit bb29a36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ resource "aws_launch_configuration" "ecs" {
# If the expression in the following list itself returns a list, remove the
# brackets to avoid interpretation as a list of lists. If the expression
# returns a single list item then leave it as-is and remove this TODO comment.
security_groups = [concat([aws_security_group.ecs.id], var.security_group_ids)]
security_groups = concat([aws_security_group.ecs.id], var.security_group_ids)
associate_public_ip_address = var.associate_public_ip_address
spot_price = var.spot_bid_price

Expand Down Expand Up @@ -76,7 +76,7 @@ resource "aws_launch_configuration" "ecs_second" {
# If the expression in the following list itself returns a list, remove the
# brackets to avoid interpretation as a list of lists. If the expression
# returns a single list item then leave it as-is and remove this TODO comment.
security_groups = [concat([aws_security_group.ecs.id], var.security_group_ids)]
security_groups = concat([aws_security_group.ecs.id], var.security_group_ids)
associate_public_ip_address = var.associate_public_ip_address
spot_price = var.spot_bid_price

Expand Down

0 comments on commit bb29a36

Please sign in to comment.