From ec74edb2dd59adc9132e72ad36b667ab90057ae6 Mon Sep 17 00:00:00 2001 From: Anthony Lukach Date: Wed, 30 Oct 2024 17:22:50 -0700 Subject: [PATCH] Reword warning --- deploy/lib/KeycloakConfig.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy/lib/KeycloakConfig.ts b/deploy/lib/KeycloakConfig.ts index 72c2a4b..0bd77a4 100644 --- a/deploy/lib/KeycloakConfig.ts +++ b/deploy/lib/KeycloakConfig.ts @@ -39,7 +39,8 @@ export class KeycloakConfig extends Construct { const createdClientSecrets: clientSecretTuple = props.privateOauthClients.map(({ id: clientSlug, realm }) => [ clientSlug, - // WARNING: Changing the secret name or id will cause a new secret to be created + // WARNING: Changing this construct (name, id, template) will cause new client + // secrets to be generated! new secretsManager.Secret(this, `${clientSlug}-client-secret`, { secretName: `${cdk.Stack.of(this).stackName}-client-${clientSlug}`, generateSecretString: {