Skip to content

Instantly share code, notes, and snippets.

@Satak
Created March 25, 2022 13:34
Show Gist options
  • Save Satak/8d354897aa3a62321ac23dcddd1dc7ae to your computer and use it in GitHub Desktop.
Save Satak/8d354897aa3a62321ac23dcddd1dc7ae to your computer and use it in GitHub Desktop.
Terraform templatefile
config:
name: "this is ${env} config"
variable "env" {
default = "dev"
}
output "data" {
value = tomap(yamldecode(templatefile("${path.module}/config.yaml", { env : var.env })))["config"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment