You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/configs/testdata/query-files/valid/mixed/main.tfquery.hcl

29 lines
430 B

list "aws_instance" "test" {
provider = aws
count = 1
config {
tags = {
Name = "test"
}
}
}
list "aws_instance" "test2" {
provider = aws
count = 1
config {
tags = {
Name = join("-", ["test2", list.aws_instance.test.data[0]])
}
}
}
list "aws_ec2" "test" {
provider = aws
count = 1
config {
tags = {
Name = join("-", ["test", list.aws_instance.test.data[0]])
}
}
}