Skip to content

Commit e322f31

Browse files
committed
split instance types
1 parent 18bd208 commit e322f31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cdk_app/hyp3_stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def __init__(self, scope: Construct, id: str, **kwargs) -> None:
2424
'MonthlyBudget': os.environ['MONTHLY_BUDGET'],
2525
'RequiredSurplus': os.environ['REQUIRED_SURPLUS'],
2626
'AmiId': os.environ['AMI_ID'],
27-
'InstanceTypes': os.environ['INSTANCE_TYPES'],
27+
'InstanceTypes': os.environ['INSTANCE_TYPES'].split(','),
2828
}
2929
if os.environ['SECURITY_ENVIRONMENT'] != 'EDC':
3030
params['DomainName'] = os.environ['DOMAIN_NAME']

0 commit comments

Comments
 (0)