Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSL Cert Error in Azure Application Gateway

We followed the guide to setup an SSL application gateway - https://learn.microsoft.com/en-us/azure/application-gateway/application-gateway-ssl-portal.

When I create the rule for https traffic, I get an error:

Failed to save configuration changes to application gateway 'xxxgateway'. Error: Data must be specified for Certificate /subscriptions/Subscription_ID/resourceGroups/RG/providers/Microsoft.Network/applicationGateways/xxxgateway/sslCertificates/xx_cert.

Can someone let me know what might be causing this issue?

Thanks

like image 389
RRavikum Avatar asked Feb 28 '17 02:02

RRavikum


2 Answers

I recently ran into this error and found that my application gateway hadn't finished updating after adding the https listener. After that completed, I was able to add rules.

like image 110
Tyler Avatar answered Nov 15 '22 06:11

Tyler


Open the following link to have a look at the details of your Application Gateway:

https://resources.azure.com/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/applicationGateways/{applicationGatewayName}

There is an sslCertificates array with the certificates the Gateway can use. You can check the provisioning state of the certificate and the actual ID of the certificate to be used.

like image 4
HobPet Avatar answered Nov 15 '22 07:11

HobPet