Skip to content

Instantly share code, notes, and snippets.

@thapakazi
Created December 8, 2020 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thapakazi/314b08740817445b1e68a9a7c7e2897e to your computer and use it in GitHub Desktop.
Save thapakazi/314b08740817445b1e68a9a7c7e2897e to your computer and use it in GitHub Desktop.
debug var locally
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