Skip to content

Commit

Permalink
Fix integration test name/password keys in secret
Browse files Browse the repository at this point in the history
  • Loading branch information
ceholden committed Nov 19, 2024
1 parent 4574fb6 commit 791a3d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cdk/integration_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def __init__(
secret_name=f"hls-s2-downloader-serverless/{identifier}/esa-subscription-credentials",
description="Dummy values for the ESA 'push' subscription authentication",
generate_secret_string=aws_secretsmanager.SecretStringGenerator(
secret_string_template=json.dumps({"username": "test-user"}),
generate_string_key="password",
secret_string_template=json.dumps({"notification_username": "test-user"}),
generate_string_key="notification_password",
),
)

Expand Down

0 comments on commit 791a3d3

Please sign in to comment.