mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-04 21:00:39 -04:00
Signed-off-by: Babur Ayanlar <babur.ayanlar@ableton.com> Signed-off-by: baa-ableton <110462357+baa-ableton@users.noreply.github.com>
15 lines
240 B
HCL
15 lines
240 B
HCL
locals {
|
|
module_version = null
|
|
}
|
|
module "foo" {
|
|
source = "./foo"
|
|
version = local.module_version
|
|
}
|
|
|
|
locals {
|
|
module_version_set = "1.0.0"
|
|
}
|
|
module "foo_remote" {
|
|
source = "hashicorp/foo/bar"
|
|
version = local.module_version_set
|
|
} |