mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-14 22:02:22 -04:00
This adds additional coverage of the situation reported in #7195 to
prevent against regression. The actual fix was in 2356afd, in response
to #7143.
13 lines
181 B
HCL
13 lines
181 B
HCL
variable "param" {
|
|
type = "list"
|
|
}
|
|
|
|
resource "aws_instance" "test" {
|
|
count = "2"
|
|
thing = "doesnt"
|
|
}
|
|
|
|
output "out_from_splat" {
|
|
value = ["${aws_instance.test.*.thing}"]
|
|
}
|