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
Here is what we use in the azure cli.
upload
az webapp config ssl upload --certificate-file="$cert_path" --certificate-password=XXXXXXX --name=XXXXXXX --resource-group XXXXXXXX
The upstream Terraform provider does not yet support SSL certificates with App Service. The bug that tracks adding that support is here: hashicorp/terraform-provider-azurerm#1136
It looks like a fix for that issue is imminent, so I would expect support for SSL certs to be added soon. In the meantime, you could try implementing a dynamic provider to manage the certs for your app service.
Here is what we use in the azure cli.
upload
az webapp config ssl upload --certificate-file="$cert_path" --certificate-password=XXXXXXX --name=XXXXXXX --resource-group XXXXXXXX
bind
az webapp config ssl bind --certificate-thumbprint XXXXXXXX --name XXXXXXXX --resource-group XXXXXXXX --ssl-type "SNI"
The text was updated successfully, but these errors were encountered: