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
|
# File 'lib/fastlane/plugin/sq_ci_tools/options/s3.rb', line 11
def self.options
[
FastlaneCore::ConfigItem.new(
key: :s3_access_key_id,
env_name: 'SQ_CI_S3_ACCESS_KEY_ID',
description: 'Identifier for S3 access key',
optional: false,
type: String
),
FastlaneCore::ConfigItem.new(
key: :s3_secret_access_key,
env_name: 'SQ_CI_S3_SECRET_ACCESS_KEY',
description: 'Secret for S3 access key',
optional: false,
type: String
),
FastlaneCore::ConfigItem.new(
key: :s3_region_name,
env_name: 'SQ_CI_S3_REGION_NAME',
description: 'Region name of S3 storage',
optional: false,
type: String
),
FastlaneCore::ConfigItem.new(
key: :s3_bucket_name,
env_name: 'SQ_CI_S3_BUCKET_NAME',
description: 'S3\'s bucket name',
optional: false,
type: String
),
FastlaneCore::ConfigItem.new(
key: :s3_endpoint,
env_name: 'SQ_CI_S3_ENDPOINT',
description: 'Endpoint for S3 storage',
optional: false,
type: String
)
]
end
|