You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The value of base_tags is passed to the private link module by the logic_app_standard module without modification.
The private_link module expects base_tags to be a bool.
variable "base_tags" {
description = "Base tags for the resource to be inherited from the resource group."
type = bool
}
this leads to this error:
│ Error: Invalid value for input variable
│
│ on ../../terraform-azurerm-caf/modules/logic_app/standard/private_endpoint.tf line 19, in module "private_endpoint":
│ 19: base_tags = var.base_tags
│
│ The given value is not suitable for module.solution.module.logic_app_standard["las1"].module.private_endpoint["pe_la"].var.base_tags declared at ../../terraform-azurerm-caf/modules/networking/private_endpoint/variables.tf:27,1-21: bool required.
╵
Terraform plan return code: 1
Is there an existing issue for this?
Community Note
Version of the module you are using
5.7.11
Rover Version
aztfmod/rover:1.4.6-2305.1807
Terraform Version
v1.4.6 on linux_arm64
AzureRM Provider Version
3.75.0
Affected Resource(s)/Data Source(s)
azurerm_logic_app_standard, private_endpoint
Terraform Configuration Files
Expected Behaviour
The provided example works.
Actual Behaviour
The module call logic_app.tf contains this line:
The value of base_tags is passed to the private link module by the logic_app_standard module without modification.
The private_link module expects
base_tags
to be a bool.this leads to this error:
This fixes the problem:
I will provide a PR later
Steps to Reproduce
No response
Important Factoids
No response
References
No response
The text was updated successfully, but these errors were encountered: