Skip to content

Commit

Permalink
Require the region s3 storage mapping configuration form field (#1408)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiahna-tucker authored Dec 19, 2024
1 parent c73655e commit ecbc4ee
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const s3ProviderSchema = {
},
],
type: 'object',
required: ['bucket'],
required: ['bucket', 'region'],
properties: {
bucket: {
description: 'Bucket into which Flow will store data.',
Expand All @@ -60,8 +60,7 @@ const s3ProviderSchema = {
'(^(([a-z0-9]|[a-z0-9][a-z0-9\\-]*[a-z0-9])\\.)*([a-z0-9]|[a-z0-9][a-z0-9\\-]*[a-z0-9])$)',
},
region: {
description:
'AWS region of the S3 bucket. Uses the default value from the AWS credentials of the Gazette broker if unset.',
description: 'AWS region of the S3 bucket.',
type: 'string',
},
prefix: {
Expand Down

0 comments on commit ecbc4ee

Please sign in to comment.