mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
8 lines
138 B
HCL
8 lines
138 B
HCL
data "aws_data_source" "foo" {
|
|
compute = "value"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
count = "${data.aws_data_source.foo.value}"
|
|
}
|