I am trying to use the azurerm_resource_group_template_deployment
resource "azurerm_resource_group_template_deployment" "my-arm-template" {
parameters_content = {
location = azurerm_resource_group.my_rg.location
}
name = "my_name"
...
}
I am getting an error:
Inappropriate value for attribute "parameters_content": string required.
How should I define the parameters_content section?
You need to
jsonencode
the actual argument, like