-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetting_schema.json
53 lines (53 loc) · 1.22 KB
/
setting_schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://actcast.io/schema/v7/setting_schema_schema.json",
"type": "object",
"properties": {
"region_name": {
"title": "AWS region",
"description": "AWS region code",
"type": "string",
"default": "ap-northeast-1",
"enum": [
"ap-northeast-1",
"ap-northeast-2",
"ap-southeast-1",
"ap-southeast-2",
"us-east-1",
"us-east-2",
"us-west-1",
"us-west-2",
"eu-central-1",
"eu-west-1",
"eu-west-2",
"ap-south-1"
]
},
"aws_access_key_id": {
"title": "AWS access key id",
"description": "The AWS access key id to access S3 bucket",
"type": "string"
},
"aws_secret_access_key": {
"title": "AWS secret access key",
"description": "The AWS secret access key to access S3 bucket",
"type": "string"
},
"bucket_name": {
"title": "bucket name",
"description": "S3 bucket name",
"type": "string"
}
},
"propertyOrder": [
"bucket_name",
"region_name",
"aws_access_key_id",
"aws_secret_access_key"
],
"required": [
"bucket_name",
"region_name",
"aws_access_key_id",
"aws_secret_access_key"
]
}