mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-21 18:10:30 -04:00
15 lines
175 B
HCL
15 lines
175 B
HCL
locals {
|
|
foo = 3
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
}
|
|
module "count_child" {
|
|
count = 1
|
|
source = "./child"
|
|
}
|
|
|
|
module "registry_mod" {
|
|
source = "foo/bar/barfoo"
|
|
}
|