Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%plan-variable-sensitivity-module%child%main.tf

14 lines
211 B
Terraform
Raw Normal View History

2021-09-17 20:53:40 +02:00
variable "foo" {
type = string
}
// "bar" is defined as sensitive by both the parent and the child
variable "bar" {
sensitive = true
}
resource "aws_instance" "foo" {
foo = var.foo
value = var.bar
}