Hi all,
We’re very behind the curve of course, and working on upgrading from 0.11 to 0.12. I’ve ran into an issue I’m struggling to overcome, and was hoping someone in the community could assist:
- I have many, many modules that I’ve individually ran upgrades on
- I’m trying to run a plan on one of our environments that use these modules, and I’m getting the following error:
Error: Invalid value for module argument
on core.tf line 92, in module "environment":
92: all_tags = local.all_tags
The given value is not suitable for child module variable "all_tags" defined
at modules/standard/variables.tf:347,1-20: element "fabio_tags": string
required.
core.tf line 92:
all_tags = local.all_tags
This is coming from the defaults.tf:
all_tags = {
common_tags = local.common_tags
ec2_tags = {
"Patch Group" = var.patch_group
}
fabio_tags = {
"machine-group" = "fabio"
}
sns_tags = {}
s3_tags = {}
sqs_tags = {}
cloudwatch_tags = {}
}
shared_services_tags = {
common_tags = local.common_tags
node_tags = {
"Patch Group" = var.patch_group
}
}
This all worked okay in 0.11, but I’m not sure what the issue is with 0.12. Would anyone have any thoughts or insights into what I’m missing here in the upgrade?
Thank you for any help you can offer!