diff --git a/src/helper.ts b/src/helper.ts index 6eca30e..af3b66f 100644 --- a/src/helper.ts +++ b/src/helper.ts @@ -228,7 +228,7 @@ export type ScalewayNodeProviderRuntimeMatcher = { [Version in Versions as `node${Version}`]: `node${Version}`; }; -export type AwsNodeMatcher = AwsNodeProviderRuntimeMatcher<12 | 14 | 16 | 18>; +export type AwsNodeMatcher = AwsNodeProviderRuntimeMatcher<12 | 14 | 16 | 18 | 20>; export type AzureNodeMatcher = AzureNodeProviderRuntimeMatcher<12 | 14 | 16 | 18>; @@ -249,6 +249,7 @@ export type ScalewayNodeMatcherKey = keyof ScalewayNodeMatcher; export type NodeMatcherKey = AwsNodeMatcherKey | AzureNodeMatcherKey | GoogleNodeMatcherKey | ScalewayNodeMatcherKey; const awsNodeMatcher: AwsNodeMatcher = { + 'nodejs20.x': 'node20', 'nodejs18.x': 'node18', 'nodejs16.x': 'node16', 'nodejs14.x': 'node14',