mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-20 00:13:30 -05: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"
|
|
}
|