Open mostafa6765 opened 2 months ago
Hi, @mostafa6765. I'm Edgar from the Product team at Scalr. Currently, we do not support Terragrunt. Except for the definition of the variables, what else Terragrunt-specific do you have in the terragrunt.hcl
file?
@emocharnik yes, I have a terragrunt.hcl and set some inputs. Those inputs don't bind like terraform cloud.
Thank you. terragrunt support will be good, waiting for this feature.
terraform {
source = "../../projects//stage"
}
include {
path = find_in_parent_folders()
}
inputs = {
vpc_cidr_block = "10.0.0.0/16"
vpc_enable_dns_hostnames = true
vpc_enable_dns_support = true
vpc_name = "stage-vpc"
vpc_tags = {
"Environment" = "stage"
}
subnet_cidrs = ["10.0.1.0/24", "10.0.2.0/24"]
subnet_availability_zones = ["us-west-2a", "us-west-2b"]
subnet_map_public_ip_on_launch = true
subnet_name_prefix = "stage-subnet"
subnet_tags = {
"Environment" = "stage"
}
}
Hi, @mostafa6765. Good news: we started working on the Terragrunt integration. I'll let you know once it's added.
I am facing an issue with Terragrunt. Scalr produces variable not found issue with terragrunt.hcl vars.