Skip to content

Commit

Permalink
fix secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
RabeaZr committed Nov 2, 2023
1 parent 0e49f41 commit d9ec616
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d9ec616

Please sign in to comment.