Skip to content

Instantly share code, notes, and snippets.

@ivanignatiev
Last active April 12, 2023 15:06
Show Gist options
  • Save ivanignatiev/1936a4f9b5efc30e945f64fe8aba3ee4 to your computer and use it in GitHub Desktop.
Save ivanignatiev/1936a4f9b5efc30e945f64fe8aba3ee4 to your computer and use it in GitHub Desktop.
Get list of field values from Terraform map
locals {
users_object_ids = {
"user1": { object_id: "d6c7ce3e-9f1d-4310-8862-8ab64e872246" },
"user2": { object_id: "035c4713-14c0-43c3-a8b0-d4f21bc8ffca" },
}
}
#
# terraform console
# > values(local.users_object_ids)[*].object_id
#
# Output:
# [
# "035c4713-14c0-43c3-a8b0-d4f21bc8ffca",
# "d6c7ce3e-9f1d-4310-8862-8ab64e872246",
# ]
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment