mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 00:24:25 +08:00
* Update layout of existing destination panel + add some improvements * update icn * Smol fix
15 lines
820 B
TypeScript
15 lines
820 B
TypeScript
/**
|
||
* Rules: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-naming.html?i
|
||
* Bucket names must be between 3 and 63 characters long.
|
||
* Bucket names can consist only of lowercase letters, numbers, and hyphens (-).
|
||
* Bucket names must begin and end with a letter or number.
|
||
* Bucket names must not contain any underscores (_) or periods (.).
|
||
* Bucket names must not start with any of the following reserved prefixes:
|
||
xn--, sthree-, amzn-s3-demo-, aws
|
||
* Bucket names must not end with any of the following reserved suffixes:
|
||
-s3alias, --ol-s3, --x-s3, --table-s3
|
||
*/
|
||
export const reservedPrefixes = /^(?:xn--|sthree-|amzn-s3-demo-|aws)/
|
||
export const reservedSuffixes = /(?:-s3alias|--ol-s3|--x-s3|--table-s3)$/
|
||
export const validBucketNameRegex = /^[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/
|