mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-29 18:19:02 -04:00
28 lines
430 B
HCL
28 lines
430 B
HCL
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]])
|
|
}
|
|
}
|
|
}
|