stackup 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
Binary file
@@ -1,6 +0,0 @@
1
- [
2
- {
3
- "parameter_key": "ParameterKey",
4
- "parameter_value": "ParameterValue"
5
- }
6
- ]
@@ -1,31 +0,0 @@
1
- ---
2
- AWSTemplateFormatVersion: '2010-09-09'
3
- Description: 'AWS CloudFormation Sample Template S3_Website_Bucket_With_Retain_On_Delete:
4
- Sample template showing how to create a publicly accessible S3 bucket configured
5
- for website access with a deletion policy of retail on delete. **WARNING** This
6
- template creates an S3 bucket that will NOT be deleted when the stack is deleted.
7
- You will be billed for the AWS resources used if you create a stack from this template.'
8
- Resources:
9
- S3Bucket:
10
- Type: AWS::S3::Bucket
11
- Properties:
12
- AccessControl: PublicRead
13
- WebsiteConfiguration:
14
- IndexDocument: index.html
15
- ErrorDocument: error.html
16
- Outputs:
17
- WebsiteURL:
18
- Value:
19
- Fn::GetAtt:
20
- - S3Bucket
21
- - WebsiteURL
22
- Description: URL for website hosted on S3
23
- S3BucketSecureURL:
24
- Value:
25
- Fn::Join:
26
- - ''
27
- - - https://
28
- - Fn::GetAtt:
29
- - S3Bucket
30
- - DomainName
31
- Description: Name of S3 bucket to hold website content