cfn_camelizer 0.4.3 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/camelizer.yml +6 -0
- data/lib/cfn_camelizer/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0df7d24c1b00dedf3a371f12d516e9a80a8bb01bbcbc492d1d2100a2da5a941c
|
4
|
+
data.tar.gz: 764d384e069b4c999647e87ead5692e8153179c42f82e0947db53db2ab4e077e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e716bf77841a524fa696f0e7417bbc9acd271dcf2dd6ecdc7c406f6410ff1ae6e3a545894ff09936ba644a43963c2d8ee1ad5782326a0e09c3e1de3c93e22115
|
7
|
+
data.tar.gz: e6613fe68eaedba70769b5055ce4cbfdf0b1c31efa6dfd6f11855e6cb329df2fab28e7d517de496cc734b4f3b62ae7712272f0b263f7dbd8a212451e42d88abb
|
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.4]
|
7
|
+
- add AWS::RDS::DBCluster special rules
|
8
|
+
|
6
9
|
## [0.4.3]
|
7
10
|
- add AWS::RDS::DBInstance special rules
|
8
11
|
|
data/lib/camelizer.yml
CHANGED
@@ -22,6 +22,12 @@ resource_keys: # specific to resource types
|
|
22
22
|
RoleARN: RoleArn
|
23
23
|
AWS::Route53::RecordSet:
|
24
24
|
Ttl: TTL
|
25
|
+
AWS::RDS::DBCluster:
|
26
|
+
DbClusterIdentifier: DBClusterIdentifier
|
27
|
+
DbClusterParameterGroupName: DBClusterParameterGroupName
|
28
|
+
DbSubnetGroupName: DBSubnetGroupName
|
29
|
+
EnableIamDatabaseAuthentication: EnableIAMDatabaseAuthentication
|
30
|
+
SourceDbClusterIdentifier: SourceDBClusterIdentifier
|
25
31
|
AWS::RDS::DBInstance:
|
26
32
|
DbClusterIdentifier: DBClusterIdentifier
|
27
33
|
DbInstanceClass: DBInstanceClass
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cfn_camelizer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-11-
|
11
|
+
date: 2019-11-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|