-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #103 from ericzbeard/bugfix1-3
Bugfixes for 1.3 release
- Loading branch information
Showing
9 changed files
with
106 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,4 @@ go.work | |
main | ||
rain | ||
local/ | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Comment on the first line | ||
Parameters: | ||
MyParam: | ||
Type: String | ||
|
||
# Multi-line comment between sections before Resources | ||
# Starting at indent 0 | ||
|
||
Resources: | ||
|
||
# Comment by itself before MyBucket | ||
|
||
MyBucket: | ||
Type: AWS::S3::Bucket # Comment at the end of line | ||
|
||
# Multi-line comment between resources | ||
# Starting at indent 0 | ||
# Between MyBucket and MyOtherBucket | ||
|
||
# Comment at the beginning of MyOtherBucket | ||
MyOtherBucket: | ||
# Comment in the middle of a resource | ||
Type: AWS::S3::Bucket | ||
# Multi line | ||
# comment | ||
Properties: | ||
BucketName: asdf | ||
|
||
# Comment at the end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Outputs: | ||
Bucket1: | ||
Value: !GetAtt Bucket1.Arn # Short GetAtt | ||
Bucket2: # Bucket comment | ||
Value: | ||
Fn::GetAtt: # GetAtt comment | ||
- Bucket2 | ||
- Arn # Arn comment | ||
|
||
# Multiline comment | ||
# starting at indent 0 | ||
Resources: | ||
Bucket2: | ||
Properties: | ||
BucketName: !Ref Name # Ref: comment | ||
Type: "AWS::S3::Bucket" | ||
Bucket1: | ||
Type: AWS::S3::Bucket | ||
Properties: | ||
BucketName: !Sub ${Bucket2}-newer | ||
Parameters: | ||
Name: | ||
Type: String | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Conditions: | ||
NeverValid: !Equals [True, False] | ||
|
||
# Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod | ||
# tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, | ||
# quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo | ||
# consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse | ||
# cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non | ||
# proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
Resources: | ||
NullResource: | ||
Type: 'Custom::NullResource' | ||
Condition: NeverValid | ||
|