This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Attach the public ELBs to the instance if they change | |
resource "aws_elb_attachment" "default" { | |
depends_on = [var.elb_depends_on] | |
for_each = toset(local.instance_ids) | |
elb = aws_elb.default.id | |
instance = each.value | |
} |
Author
a-nldisr
commented
Jul 10, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment