mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 15:36:26 -06:00
10 lines
140 B
Terraform
10 lines
140 B
Terraform
|
resource "aws_instance" "foo" {
|
||
|
num = "2"
|
||
|
compute = "foo"
|
||
|
}
|
||
|
|
||
|
data "aws_vpc" "bar" {
|
||
|
count = 3
|
||
|
foo = "${aws_instance.foo.foo}"
|
||
|
}
|