We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 407b46b commit 24cc48bCopy full SHA for 24cc48b
1 file changed
cft-templates/s3.yaml
@@ -1,14 +1,21 @@
1
AWSTemplateFormatVersion: '2010-09-09'
2
Description: create a single S3 bucket
3
4
+Parameters:
5
+ Namespace:
6
+ Type: String
7
+ Description: An environment name that will be prefixed to resource names
8
+
9
Resources:
10
SampleBucket:
11
Type: AWS::S3::Bucket
12
+ Properties:
13
+ BucketName: !Ref Namespace
14
15
Outputs:
16
BucketArn:
17
Value: !GetAtt [SampleBucket, Arn]
18
Description: URL for website hosted on S3
19
BucketName:
20
Value: !Ref SampleBucket
- Description: Name of S3 bucket
21
+ Description: Name of S3 bucket
0 commit comments