provisioners/local-exec: Fix map syntax for 0.12

This commit is contained in:
Radek Simko 2019-03-08 15:59:28 +00:00 committed by GitHub
parent 0c5fd835ce
commit a2ba1f8fe7
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"