mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-11 06:01:36 -04:00
14 lines
206 B
HCL
14 lines
206 B
HCL
|
|
module "example" {
|
|
source = "./example2"
|
|
|
|
kept = "primary kept"
|
|
foo = "primary foo"
|
|
|
|
providers = {
|
|
test = test.foo
|
|
}
|
|
depends_on = [null_resource.test]
|
|
}
|
|
resource "null_resource" "test" {}
|