elmundio87 / terraform_validate

Assists in the enforcement of user-defined standards in Terraform
GNU General Public License v3.0
256 stars 43 forks source link

Multiple variable substitution #3

Closed elmundio87 closed 8 years ago

elmundio87 commented 8 years ago

Blocks like this will no longer cause a TerraformVariableException

resource "aws_instance" "foo" {
    value = "${var.test_variable}${var.test_variable2}"
}