Last active
April 12, 2023 15:06
-
-
Save ivanignatiev/1936a4f9b5efc30e945f64fe8aba3ee4 to your computer and use it in GitHub Desktop.
Get list of field values from Terraform map
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
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