Skip to content

Commit

Permalink
split subnet ids
Browse files Browse the repository at this point in the history
  • Loading branch information
jtherrmann committed Nov 1, 2024
1 parent 6dd2ccf commit 18bd208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdk_app/hyp3_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self, scope: Construct, id: str, **kwargs) -> None:

params = {
'VpcId': os.environ['VPC_ID'],
'SubnetIds': os.environ['SUBNET_IDS'],
'SubnetIds': os.environ['SUBNET_IDS'].split(','),
'SecretArn': os.environ['SECRET_ARN'],
'ImageTag': os.environ['IMAGE_TAG'],
'ProductLifetimeInDays': os.environ['PRODUCT_LIFETIME'],
Expand Down

0 comments on commit 18bd208

Please sign in to comment.