Created
December 8, 2020 06:30
-
-
Save thapakazi/314b08740817445b1e68a9a7c7e2897e to your computer and use it in GitHub Desktop.
debug var locally
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 { | |
key = "hello" | |
value = local.key | |
} | |
resource "null_resource" "example1" { | |
provisioner "local-exec" { | |
command = "echo ${local.value}" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment