mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-15 22:10:37 -04:00
13 lines
206 B
HCL
13 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" {}
|