Merge pull request #20619 from hashicorp/d-provisioners-local-exec

provisioners/local-exec: Fix map syntax for 0.12
This commit is contained in:
Radek Simko 2019-03-08 16:53:10 +00:00 committed by GitHub
commit ec9a4b7dae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ resource "aws_instance" "web" {
provisioner "local-exec" {
command = "echo $FOO $BAR $BAZ >> env_vars.txt"
environment {
environment = {
FOO = "bar"
BAR = 1
BAZ = "true"