-
Notifications
You must be signed in to change notification settings - Fork 227
/
sc-s3-public-ra.json
35 lines (35 loc) · 1.04 KB
/
sc-s3-public-ra.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
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Service Catalog: S3 Reference Architecture: Public read-only bucket accessible from anywhere. Consider alternate options like distributing via CloudFront OAI instead of creating bucket using this template.(fdp-1oc5gsre6).",
"Resources": {
"S3Bucket": {
"Type": "AWS::S3::Bucket",
"DeletionPolicy": "Delete",
"Properties": {
"AccessControl": "PublicRead",
"Tags": [
{
"Key": "Name",
"Value": "SC-S3-RA-S3-Bucket"
}
]
}
}
},
"Outputs": {
"BucketName": {
"Value": {
"Ref": "S3Bucket"
},
"Description": "Name of the Amazon S3 bucket."
},
"BucketARN": {
"Value": {
"Fn::GetAtt": [
"S3Bucket",
"Arn"
]
}
}
}
}