mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
17 lines
347 B
HCL
17 lines
347 B
HCL
resource "aws_computed_source" "intermediates" {}
|
|
|
|
module "test_mod" {
|
|
source = "./mod"
|
|
|
|
services = [
|
|
{
|
|
"exists" = "true"
|
|
"elb" = "${aws_computed_source.intermediates.computed_read_only}"
|
|
},
|
|
{
|
|
"otherexists" = " true"
|
|
"elb" = "${aws_computed_source.intermediates.computed_read_only}"
|
|
},
|
|
]
|
|
}
|