-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudformation.yml
71 lines (65 loc) · 1.95 KB
/
cloudformation.yml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
AWSTemplateFormatVersion: '2010-09-09'
Description: Bucket for storing bundle information allow with a user to access it
Resources:
BundleStatsBucket:
Type: AWS::S3::Bucket
DeletionPolicy: Retain
UpdateReplacePolicy: Retain
Properties:
CorsConfiguration:
CorsRules:
- AllowedHeaders: ['*']
AllowedMethods: [GET, HEAD]
AllowedOrigins: ['*']
ExposedHeaders: [Content-Length, Content-Encoding]
LifecycleConfiguration:
Rules:
- Id: RetireArtifacts
Status: Enabled
ExpirationInDays: 730
TagFilters:
- Key: Type
Value: Artifact
Transitions:
- TransitionInDays: 30
StorageClass: STANDARD_IA
- TransitionInDays: 183
StorageClass: GLACIER
VersioningConfiguration:
Status: Enabled
BucketUser:
Type: AWS::IAM::User
Properties:
Policies:
- PolicyName: ReadWriteAccessToBucket
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- s3:ListBucket
Resource:
- !GetAtt BundleStatsBucket.Arn
- Effect: Allow
Action:
- s3:GetObject
- s3:PutObject
- s3:PutObjectAcl
- s3:PutObjectTagging
Resource:
- !Sub 'arn:aws:s3:::${BundleStatsBucket}/*'
AccessKey:
Type: AWS::IAM::AccessKey
Properties:
Status: Active
UserName: !Ref BucketUser
Outputs:
BucketName:
Description: 'Bucket name'
Value: !Ref BundleStatsBucket
AccessKey:
Description: 'Access key for bucket reader/writer'
Value: !Ref AccessKey
SecretAccessKey:
Description: 'Secret access key for bucket reader/writer'
Value: !GetAtt AccessKey.SecretAccessKey