cfn_camelizer 0.4.4 → 0.4.5
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/CHANGELOG.md +3 -0
- data/lib/camelizer.yml +4 -1
- data/lib/cfn_camelizer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 504510cac729243fa773b5aeded57059677532c8e4ee0fbc713244a4759b9bcd
|
|
4
|
+
data.tar.gz: 16c1d49760900c9a6aef7b5e1c48552bfe0c03260b2ab2f25b8d86f4196e4fb6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 23bd9e8dee388a7739f945fbad6149bc81d93be64d56647f0d63715a873abe7e9576cb1f02e0df782fb6865eb99b4207c5c595f81503df6338d998438ee42dd1
|
|
7
|
+
data.tar.gz: 9aac7d5ac0a2312fa197a78b655ecb95dad40d4a0560e1cc40712815bc8cd3203ac5a7f5eedd422dc78eaea3929c063b7a0a97310fcf36dac4c27e12a289986a
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [0.4.5]
|
|
7
|
+
- add passthrough Parameters and AWS::S3::Bucket rules
|
|
8
|
+
|
|
6
9
|
## [0.4.4]
|
|
7
10
|
- add AWS::RDS::DBCluster special rules
|
|
8
11
|
|
data/lib/camelizer.yml
CHANGED
|
@@ -52,8 +52,11 @@ resource_keys: # specific to resource types
|
|
|
52
52
|
AutoScaling::LaunchConfiguration:
|
|
53
53
|
ClassicLinkVpcId: ClassicLinkVPCId
|
|
54
54
|
ClassicLinkVpcSecurityGroups: ClassicLinkVPCSecurityGroups
|
|
55
|
+
AWS::S3::Bucket:
|
|
56
|
+
SseAlgorithm: SSEAlgorithm
|
|
55
57
|
passthrough_parent_keys:
|
|
56
58
|
- AWS::CloudFormation::Init # configSets https://amzn.to/33iPI2Y
|
|
57
59
|
- Fn::Sub # https://amzn.to/2HKwxri
|
|
58
60
|
- ResponseParameters # API Gateway MethodResponse https://amzn.to/2HKw0Wk
|
|
59
|
-
- Variables # Lambda Environment Variables https://amzn.to/2HLlttV
|
|
61
|
+
- Variables # Lambda Environment Variables https://amzn.to/2HLlttV
|
|
62
|
+
- Parameters # AWS::RDS::DBClusterParameterGroup Parameters property
|