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
At some point, you'll need to renew your certificates if you configured your application gateway for TLS/SSL encryption.
17
17
18
-
You can renew a certificate associated with a listener using either the Azure portal, Azure PowerShell, or Azure CLI:
18
+
There are two locations where certificates may exist: certificates stored in Azure Key Vault, or certificates uploaded to an application gateway.
19
19
20
-
## Azure portal
20
+
## Certificates on Azure Key Vault
21
+
22
+
When Application Gateway is configured to use Key Vault certificates, its instances retrieve the certificate from Key Vault and install them locally for TLS termination. The instances poll Key Vault at four-hour intervals to retrieve a renewed version of the certificate if it exists. If an updated certificate is found, the TLS/SSL certificate that's currently associated with the HTTPS listener is automatically rotated.
23
+
24
+
> [!TIP]
25
+
> Any change to Application Gateway will force a check against Key Vault to see if any new versions of certificates are available. This includes, but is not limited to, changes to Frontend IP Configurations, Listeners, Rules, Backend Pools, Resource Tags, and more. If an updated certificate is found, the new certificate will immediately be presented.
26
+
27
+
Application Gateway uses a secret identifier in Key Vault to reference the certificates. For Azure PowerShell, the Azure CLI, or Azure Resource Manager, we strongly recommend that you use a secret identifier that doesn't specify a version. This way, Application Gateway will automatically rotate the certificate if a newer version is available in your key vault. An example of a secret URI without a version is `https://myvault.vault.azure.net/secrets/mysecret/`.
28
+
29
+
## Certificates on an application gateway
30
+
31
+
Application Gateway supports certificate upload without the need to configure Azure Key Vault. To renew the uploaded certificates, use the following steps for the Azure portal, Azure PowerShell, or Azure CLI.
32
+
33
+
### Azure portal
21
34
22
35
To renew a listener certificate from the portal, navigate to your application gateway listeners.
23
36
Select the listener that has a certificate that needs to be renewed, and then select **Renew or edit selected certificate**.
@@ -26,7 +39,7 @@ Select the listener that has a certificate that needs to be renewed, and then se
26
39
27
40
Upload your new PFX certificate, give it a name, type the password, and then select **Save**.
0 commit comments