Skip to content

Commit 5cb687b

Browse files
committed
eks/ng: fix ASG launch template for "InstanceTypes"
Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
1 parent 1f5d07d commit 5cb687b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eks/ng/nodes.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,15 +250,15 @@ Resources:
250250
- InstanceType: !Select [ 0, !Ref InstanceTypes ]
251251
- Fn::If:
252252
- Has2InstanceTypes
253-
- !Select [ 1, !Ref InstanceTypes ]
253+
- InstanceType: !Select [ 1, !Ref InstanceTypes ]
254254
- !Ref AWS::NoValue
255255
- Fn::If:
256256
- Has3InstanceTypes
257-
- !Select [ 2, !Ref InstanceTypes ]
257+
- InstanceType: !Select [ 2, !Ref InstanceTypes ]
258258
- !Ref AWS::NoValue
259259
- Fn::If:
260260
- Has4InstanceTypes
261-
- !Select [ 3, !Ref InstanceTypes ]
261+
- InstanceType: !Select [ 3, !Ref InstanceTypes ]
262262
- !Ref AWS::NoValue
263263
HealthCheckType: EC2
264264
HealthCheckGracePeriod: 300

0 commit comments

Comments
 (0)