mirror of
https://github.com/hashicorp/terraform.git
synced 2026-06-10 09:21:58 -04:00
12 lines
193 B
HCL
12 lines
193 B
HCL
terraform {
|
|
required_providers {
|
|
test = {
|
|
source = "test"
|
|
}
|
|
}
|
|
}
|
|
|
|
module "example" {
|
|
source = "./modules/example"
|
|
version = provider::test::is_true(true) ? "1.0.0" : ""
|
|
}
|