We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, variable interpolation works when the Terraform code is structured as module (like here
But the estimation will fail with a simple TF file such:
provider "aws" { region = "eu-west-1" } variable "front_ebs_optimized" { default = false } resource "aws_instance" "web" { ami = data.aws_ami.ubuntu.id instance_type = "m3.xlarge" ebs_optimized = var.front_ebs_optimized }
Because the variable is not replaced by the real value
expected
Implement the variable interpolation on non-module terraform code
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, variable interpolation works when the Terraform code is structured as module (like here
But the estimation will fail with a simple TF file such:
Because the variable is not replaced by the real value
expected
Implement the variable interpolation on non-module terraform code
The text was updated successfully, but these errors were encountered: