mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-18 04:01:08 -05:00
12 lines
150 B
HCL
12 lines
150 B
HCL
module "foo" {
|
|
source = "./foo"
|
|
|
|
depends_on = [
|
|
test_instance.test
|
|
]
|
|
}
|
|
|
|
resource "test_instance" "test" {
|
|
ami = "foo-bar"
|
|
}
|