So I run this in terraform (provider 3.100.0) and the key vault gets created but the “enable_rbac_authorization” doesn’t seem to do anything? As in…. shouldn’t the role based access control radio button be selected? Here is my code…
resource "azurerm_key_vault" "keyvault" {
name = var.name
location = var.location
resource_group_name = var.resource_group_name
tenant_id = var.tenant_id
public_network_access_enabled = false
enable_rbac_authorization = true
soft_delete_retention_days = 7
purge_protection_enabled = false
sku_name = "standard"
}
Resultant key vault –> access configuration as viewed in the portal: