Azure App Service Certificate and Terraform • Jamie Phillips
I recently ran across an interesting issue with using Terraform to load an existing SSL certificate located in a key vault not in the same subscription or resource group to an Azure App Service. Here is an example of what was being used. resource "azurerm_app_service_certificate" "main" { name = "test-eus-cert" resource_group_name = azurerm_resource_group.main.name location = azurerm_resource_group.main.location key_vault_secret_id = "<key vault secret id>" } Here is the error I was receiving.