Files
opentf/terraform/testdata/plan-module-variable-from-splat/mod/main.tf
Pam Selle 8f7807684a Upgrade to quoted keywords to error
The warning about deprecation is upgraded to an error
2021-02-21 20:27:20 -05:00

13 lines
177 B
HCL

variable "param" {
type = list(string)
}
resource "aws_instance" "test" {
count = "2"
thing = "doesnt"
}
output "out_from_splat" {
value = aws_instance.test.*.thing
}