From 726023dd86be233fecbce82afdd1e8339d5023c9 Mon Sep 17 00:00:00 2001 From: Andrew Bays Date: Wed, 7 Aug 2024 14:51:39 +0000 Subject: [PATCH] Add message for waiting for TLS input resources (cherry picked from commit 240dbde2ba3042e0dc28fa9d52776dd82fbb44a6) --- modules/common/condition/conditions.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/common/condition/conditions.go b/modules/common/condition/conditions.go index 177a671b..b64d9577 100644 --- a/modules/common/condition/conditions.go +++ b/modules/common/condition/conditions.go @@ -318,6 +318,12 @@ const ( // AnsibleEEReadyErrorMessage AnsibleEEReadyErrorMessage = "AnsibleEE error occurred %s" + // + // TLSInputReady condition messages + // + // TLSInputReadyWaitingMessage - Provides the message to clarify that TLS resources have not been generated yet + TLSInputReadyWaitingMessage = "TLSInput is missing: %s" + // TLSInputErrorMessage - Provides the message when there's error in provision of TLS sources TLSInputErrorMessage = "TLSInput error occured in TLS sources %s" )