resource "azurerm_policy_remediation" "policy_remediation" {
name = "baseline-policy-remediation"
scope = azurerm_policy_assignment.baseline.scope
policy_assignment_id = azurerm_policy_assignment.baseline.id
}
Running this using azurerm ~>2.0 results in the following:
The provider provider.azurerm does not support resource type
"azurerm_policy_remediation".
I can’t find any documentation on how to address the policy remediation aspect of Azure policy. The only documentation I can find lists that it is supported:
Thoughts? I have policies that I need to automate that require a remediation service principal and I can’t seem to get it to work. I don’t see this as being a code issue, it just isn’t supported?
Thanks!