Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split instance types
Browse files Browse the repository at this point in the history
jtherrmann committed Nov 1, 2024

Unverified

No user is associated with the committer email.
1 parent 18bd208 commit e322f31
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
@@ -24,7 +24,7 @@ def __init__(self, scope: Construct, id: str, **kwargs) -> None:
'MonthlyBudget': os.environ['MONTHLY_BUDGET'],
'RequiredSurplus': os.environ['REQUIRED_SURPLUS'],
'AmiId': os.environ['AMI_ID'],
'InstanceTypes': os.environ['INSTANCE_TYPES'],
'InstanceTypes': os.environ['INSTANCE_TYPES'].split(','),
}
if os.environ['SECURITY_ENVIRONMENT'] != 'EDC':
params['DomainName'] = os.environ['DOMAIN_NAME']

0 comments on commit e322f31

Please sign in to comment.