cfn_camelizer 0.4.2 → 0.4.3
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/README.md +2 -0
- data/lib/camelizer.yml +15 -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: 914d01308a2a7d8325decb70b1dd0d1de41a47011be1c4aa69ccc0a8a6782694
|
4
|
+
data.tar.gz: 73c9c2abebdec63b8703c1c7c76e82ca460d6308e53072c2b98eb51ef8be6bbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2866935ed6cef45681bbd95049df246b0609b5185ecb57c868c397ee2fbda14d4d3e0d8451ef22dd01e106f8f2f797ea8d2594f1657a952ba1ac27e63c8e61a
|
7
|
+
data.tar.gz: d1ad323f262e6481fc462944df3c545a87ed5afb8b1d021b38ef7af651331042dd550df3935715cc6d43fb26e7a9989ccbf1eeadebfddc4626b7978523e27eb5
|
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.3]
|
7
|
+
- add AWS::RDS::DBInstance special rules
|
8
|
+
|
6
9
|
## [0.4.2]
|
7
10
|
- add AWS::CloudFormation::Init to passthrough keys
|
8
11
|
- pass through keys with period in them
|
data/README.md
CHANGED
data/lib/camelizer.yml
CHANGED
@@ -22,6 +22,21 @@ resource_keys: # specific to resource types
|
|
22
22
|
RoleARN: RoleArn
|
23
23
|
AWS::Route53::RecordSet:
|
24
24
|
Ttl: TTL
|
25
|
+
AWS::RDS::DBInstance:
|
26
|
+
DbClusterIdentifier: DBClusterIdentifier
|
27
|
+
DbInstanceClass: DBInstanceClass
|
28
|
+
DbInstanceIdentifier: DBInstanceIdentifier
|
29
|
+
DbName: DBName
|
30
|
+
DbParameterGroupName: DBParameterGroupName
|
31
|
+
DbSecurityGroups: DBSecurityGroups
|
32
|
+
DbSnapshotIdentifier: DBSnapshotIdentifier
|
33
|
+
DbSubnetGroupName: DBSubnetGroupName
|
34
|
+
DomainIamRoleName: DomainIAMRoleName
|
35
|
+
EnableIamDatabaseAuthentication: EnableIAMDatabaseAuthentication
|
36
|
+
MultiAz: MultiAZ
|
37
|
+
PerformanceInsightsKmsKeyId: PerformanceInsightsKMSKeyId
|
38
|
+
SourceDbInstanceIdentifier: SourceDBInstanceIdentifier
|
39
|
+
VpcSecurityGroups: VPCSecurityGroups
|
25
40
|
AWS::RDS::DBSubnetGroup:
|
26
41
|
DbSubnetGroupDescription: DBSubnetGroupDescription
|
27
42
|
DbSubnetGroupName: DBSubnetGroupName
|
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.3
|
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
|
+
date: 2019-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|