show if certificate was changed or not
This commit is contained in:
parent
3821477c34
commit
7c7fe0ba7c
1 changed files with 5 additions and 2 deletions
|
@ -59,8 +59,11 @@ func HandleCertificates(logger *slog.Logger, config *configuration.ConfigFileDat
|
||||||
logger.Error("post certificate change command failed", "cert-id", cert.Name, "error", err)
|
logger.Error("post certificate change command failed", "cert-id", cert.Name, "error", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if certIsDifferent {
|
||||||
logger.Info("Certificate updated successfully", "cert-id", cert.Name)
|
logger.Info("New certificate rolled out", "cert-id", cert.Name)
|
||||||
|
} else {
|
||||||
|
logger.Info("Certificate not changed, skipping...", "cert-id", cert.Name)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue