Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mats16 committed Nov 6, 2022
1 parent 9a03bb3 commit 3ea73b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/supabase-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,26 +186,26 @@ export class SupabaseStack extends cdk.Stack {
});

const gqlTaskSize = new cdk.CfnParameter(this, 'GqlTaskSize', {
description: 'Fargare task size for Rest API (PostgREST)',
description: 'Fargare task size for GraphQL API (PostGraphile)',
type: 'String',
default: 'medium',
allowedValues: allowedFargateTaskSize,
});
const gqlMinTasks = new cdk.CfnParameter(this, 'GqlMinTasks', {
description: 'Minimum fargate task count for Rest API (PostgREST)',
description: 'Minimum fargate task count for GraphQL API (PostGraphile)',
type: 'Number',
default: 0,
minValue: 0,
});
const gqlMaxTasks = new cdk.CfnParameter(this, 'GqlMaxTasks', {
description: 'Maximum fargate task count for Rest API (PostgREST)',
description: 'Maximum fargate task count for GraphQL API (PostGraphile)',
type: 'Number',
default: 0,
minValue: 0,
});

const realtimeTaskSize = new cdk.CfnParameter(this, 'RealtimeTaskSize', {
description: 'Fargare task size for Realtime API)',
description: 'Fargare task size for Realtime API',
type: 'String',
default: 'medium',
allowedValues: allowedFargateTaskSize,
Expand Down

0 comments on commit 3ea73b5

Please sign in to comment.