-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcftCreateS3bucket.json
38 lines (35 loc) · 1.06 KB
/
cftCreateS3bucket.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
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Example CloudFormation template to create an S3 bucket.",
"Parameters": {
"BucketAccessControl": {
"Type": "String",
"Description": "The access control for the S3 bucket.",
"Default": "Private",
"AllowedValues": [
"Private",
"PublicRead",
"PublicReadWrite",
"AuthenticatedRead",
"LogDeliveryWrite",
"BucketOwnerRead",
"BucketOwnerFullControl"
],
"ConstraintDescription": "Must be one of the predefined access control values."
}
},
"Resources": {
"MyS3Bucket": {
"Type": "AWS::S3::Bucket",
"Properties": {
"BucketName": "qwertyuiobnmiuytrdpsdfghj"
}
}
},
"Outputs": {
"BucketName": {
"Description": "Name of the S3 bucket",
"Value": { "Ref": "MyS3Bucket" }
}
}
}