Skip to content

Instantly share code, notes, and snippets.

@khaliqgant
Created March 29, 2022 11:46
Show Gist options
  • Save khaliqgant/aeaa68ab0171c28d06b9e70a40e15cca to your computer and use it in GitHub Desktop.
Save khaliqgant/aeaa68ab0171c28d06b9e70a40e15cca to your computer and use it in GitHub Desktop.
[Terraform Tuple->Set] Convert a tuple to a set #terraform #infrastructure
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