-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlog_bucket.cform
37 lines (37 loc) · 1.09 KB
/
log_bucket.cform
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
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "S3 log bucket. After enabling bucket logging, S3 access logs will be saved there.",
"Parameters": {
"LogBucketName": {
"Description": "Log Bucket Name",
"Type": "String",
"Default": "my-s3-log-bucket"
}
},
"Resources": {
"LogBucket": {
"Type": "AWS::S3::Bucket",
"DeletionPolicy" : "Retain",
"Properties": {
"AccessControl": "LogDeliveryWrite",
"BucketName": {
"Fn::Join": [
"",
[
"my-s3-log-bucket",
"-",
{
"Ref": "AWS::AccountId"
},
"-",
{
"Ref": "AWS::Region"
}
]
]
}
}
}
},
"Outputs": {}
}