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.
- checksums.yaml +4 -4
- data/.gitattributes +17 -0
- data/.gitignore +20 -0
- data/.rspec +2 -0
- data/.rubocop.yml +47 -0
- data/.travis.yml +3 -0
- data/bin/stackup +46 -4
- data/examples/parameters.json +6 -0
- data/examples/parameters.yml +1 -0
- data/{woollyams → examples}/template.json +9 -2
- data/lib/stackup/version.rb +1 -1
- data/stackup.gemspec +7 -2
- metadata +28 -34
- data/Gemfile.lock +0 -65
- data/doc/Stackup.html +0 -202
- data/doc/Stackup/ErrorMappingProxy.html +0 -378
- data/doc/Stackup/InvalidStateError.html +0 -142
- data/doc/Stackup/NoSuchStack.html +0 -142
- data/doc/Stackup/NoUpdateRequired.html +0 -134
- data/doc/Stackup/Service.html +0 -399
- data/doc/Stackup/ServiceError.html +0 -138
- data/doc/Stackup/Stack.html +0 -1269
- data/doc/Stackup/StackUpdateError.html +0 -142
- data/doc/Stackup/StackWatcher.html +0 -455
- data/doc/_index.html +0 -199
- data/doc/class_list.html +0 -58
- data/doc/css/common.css +0 -1
- data/doc/css/full_list.css +0 -57
- data/doc/css/style.css +0 -339
- data/doc/file.README.html +0 -143
- data/doc/file_list.html +0 -60
- data/doc/frames.html +0 -26
- data/doc/index.html +0 -143
- data/doc/js/app.js +0 -219
- data/doc/js/full_list.js +0 -181
- data/doc/js/jquery.js +0 -4
- data/doc/method_list.html +0 -195
- data/doc/top-level-namespace.html +0 -194
- data/pkg/stackup-0.2.0.gem +0 -0
- data/pkg/stackup-0.3.0.gem +0 -0
- data/pkg/stackup-0.4.0.gem +0 -0
- data/woollyams/parameters.json +0 -6
- data/woollyams/template.yml +0 -31
data/pkg/stackup-0.2.0.gem
DELETED
Binary file
|
data/pkg/stackup-0.3.0.gem
DELETED
Binary file
|
data/pkg/stackup-0.4.0.gem
DELETED
Binary file
|
data/woollyams/parameters.json
DELETED
data/woollyams/template.yml
DELETED
@@ -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
|