Last active
May 11, 2022 14:16
-
-
Save eblaauw/e824b44801331e3e24ebaf7116192a1f to your computer and use it in GitHub Desktop.
terraform
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
locals { | |
datasets = { | |
"transactions" = { | |
"description" = "A list of transactions", | |
"is_critical" = "true", | |
"team" = "post_order" | |
}, | |
"products" = { | |
"description" = "A list of products", | |
"is_critical" = "false", | |
"team" = "menu" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment