We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0019d84 commit 4363593Copy full SHA for 4363593
1 file changed
packages/airnode-validator/src/config/config.ts
@@ -710,4 +710,6 @@ export type Amount = SchemaType<typeof amountSchema>;
710
export type EnabledGateway = SchemaType<typeof enabledGatewaySchema>;
711
export type MaxConcurrency = SchemaType<typeof maxConcurrencySchema>;
712
713
-export const availableCloudProviders: CloudProvider['type'][] = ['aws', 'gcp'];
+export const availableCloudProviders = cloudProviderSchema.options.map(
714
+ (option) => option.type as CloudProvider['type']
715
+);
0 commit comments