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
@@ -133,20 +138,33 @@ public void insert(SslCertificate sslCertificate, bool overwrite)
133
138
134
139
//SCENARIO => renew certificate process - bind to temporary alias, delete previous version of cert with desired alias, add renewed certificate, update bindings to renewed cert and remove temp bindings,
135
140
// delete cert with temp alias
136
-
logger.LogDebug("Bind cert with temp alias, delete cert to be renewed, add renewed cert, update bindings to new renewed cert, delete temp cert");
141
+
logger.LogDebug("Replace bindings with renewed certificate added with temporary alias");
logger.LogDebug("Remove certificate previously added with temporary alias");
141
154
delete(tempAlias);
142
155
}
143
156
//SCENARIO => certificate does NOT exist for passed in alias. certificate MUST exist for temporary alias since we already know one or both MUST exist from previous check.
144
157
// Add renewed certificate with passed in alias, bind it while removing temporary alias from binding (if exists), delete temporary alias cert
145
158
else
146
159
{
147
160
logger.LogDebug("Certificate is not in GCP, but temporary one is - Cleanup of prior error state. insert renewed certificate, bind renewed certificate and remove temp binding, delete temporary certificate.");
161
+
logger.LogDebug("Insert renewed certificate with desired alias");
148
162
insert(sslCertificate);
163
+
164
+
logger.LogDebug("Replace bindings with renewed certificate added with desired alias");
0 commit comments