Created
May 11, 2022 14:17
-
-
Save eblaauw/97a93cc35a5dafc3cfb6b9fb9d0d0b3c to your computer and use it in GitHub Desktop.
terraform_foreach
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
resource "google_bigquery_dataset" "mapped_datasets" { | |
for_each = local.datasets | |
dataset_id = each.key | |
description = each.value.description | |
location = "EU" | |
labels = { | |
is_critical = each.value.is_critical | |
team = each.value.team | |
created_by = "terraform" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment