From d9ec61663a35cd592287da371e29d4ea3d4f0727 Mon Sep 17 00:00:00 2001 From: razreik Date: Thu, 2 Nov 2023 13:00:55 +0200 Subject: [PATCH] fix secrets --- .../src/python/RedshiftClusterEncryption/fail__1__.py | 2 +- .../src/python/RedshiftClusterEncryption/pass.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cdk_integration_tests/src/python/RedshiftClusterEncryption/fail__1__.py b/cdk_integration_tests/src/python/RedshiftClusterEncryption/fail__1__.py index be0f45dd844..82b55cf8ab1 100644 --- a/cdk_integration_tests/src/python/RedshiftClusterEncryption/fail__1__.py +++ b/cdk_integration_tests/src/python/RedshiftClusterEncryption/fail__1__.py @@ -12,7 +12,7 @@ def __init__(self, scope: core.Construct, id: str, **kwargs) -> None: "MyRedshiftCluster", cluster_identifier="my-redshift-cluster", master_username="admin", - master_user_password="MySecurePassword123", # Replace with your secure password + master_user_password="MySecurePassword123", # checkov:skip=CKV_SECRET_6 test secret node_type="dc2.large", cluster_type="single-node", ) diff --git a/cdk_integration_tests/src/python/RedshiftClusterEncryption/pass.py b/cdk_integration_tests/src/python/RedshiftClusterEncryption/pass.py index 358d9dd4424..faab7ce6907 100644 --- a/cdk_integration_tests/src/python/RedshiftClusterEncryption/pass.py +++ b/cdk_integration_tests/src/python/RedshiftClusterEncryption/pass.py @@ -12,7 +12,7 @@ def __init__(self, scope: core.Construct, id: str, **kwargs) -> None: "MyRedshiftCluster", cluster_identifier="my-redshift-cluster", master_username="admin", - master_user_password="MySecurePassword123", # Replace with your secure password + master_user_password="MySecurePassword123", # checkov:skip=CKV_SECRET_6 test secret node_type="dc2.large", cluster_type="single-node", encrypted=True # Enable encryption