Created
March 29, 2022 11:46
-
-
Save khaliqgant/aeaa68ab0171c28d06b9e70a40e15cca to your computer and use it in GitHub Desktop.
[Terraform Tuple->Set] Convert a tuple to a set #terraform #infrastructure
This file contains hidden or 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
resource "aws_network_interface" "subnets" { | |
for_each = { for subnet in module.vpc.public_subnets : subnet.id => subnet } | |
subnet_id = each.value.key | |
} | |
// reference: https://selleo.com/til/posts/cnfrqv1ipl-foreach-over-tuples-in-terraform |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment