Azure Application Proxy – Zertifikat tauschen

Alle Jahre wieder… kommt ein neues SSL-Zertifikat und will getauscht werden. Das Ganze kann im Azure Portal recht nervig werden. Aber mit folgendem Skript könnt ihr das schnell und einfach erledigen. Lediglich die Konstanten oben im Skript anpassen, und los geht’s.

SSL-Zertifikat eines Application Gateways tauschen

Läuft ein SSL-Zertifikat eines Application Gateways aus, muss dieses getauscht werden. Das passiert wie folgt: Import-Module AzureRM Login-AzureRmAccount # Name of the ApplicationGateway $APPGWName = „“ # i.e. „MyAppGW01“ # Name of the ResourceGroup $RGName = „“ # i.e. „AppGW-RG“ # CertDisplayName must match the name within the Listener $CertDisplayName = „“ # i.e. „Wildcard.PowerShell24.de_2018“ Read more about SSL-Zertifikat eines Application Gateways tauschen[…]