cfn_camelizer 0.4.8 → 0.5.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/CHANGELOG.md +6 -0
- data/lib/camelizer.yml +3 -1
- data/lib/cfn_camelizer/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1fbedc74e9e1262d04dfb630f66431191c30b28477dd0ef1c2719c4833bf44f
|
|
4
|
+
data.tar.gz: f74314e8fdd12cee65856459ab91b4e4d7195608ef91664344bdd8ec172b2ddd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a5c20a4c7e766f0a5ee9261c596478ae0230b6c335d821b9f24ba6b484ff63f001a2b544ac24fc3372f28b2b4e6642ca3baa48684c632b52adf35f5e463dd3e
|
|
7
|
+
data.tar.gz: be25459205a4b5e590a1f888aa5d2dfe4826d0e2d7fa416cf8961f4162df624b451c6bfc66d21f17802f9d25b01ddbe25903f74f2d96311ea414b034f4fa5540
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.5.0] - 2023-12-20
|
|
7
|
+
- add Tags to passthrough keys
|
|
8
|
+
|
|
9
|
+
## [0.4.9]
|
|
10
|
+
- add Route53 DNSName rule
|
|
11
|
+
|
|
6
12
|
## [0.4.8]
|
|
7
13
|
- add DBClusterIdentifier spec
|
|
8
14
|
- resource_keys: allow resource to work with type or Type
|
data/lib/camelizer.yml
CHANGED
|
@@ -21,6 +21,7 @@ resource_keys: # specific to resource types
|
|
|
21
21
|
AWS::Events::Rule:
|
|
22
22
|
RoleARN: RoleArn
|
|
23
23
|
AWS::Route53::RecordSet:
|
|
24
|
+
DnsName: DNSName
|
|
24
25
|
Ttl: TTL
|
|
25
26
|
AWS::RDS::DBCluster:
|
|
26
27
|
DbClusterIdentifier: DBClusterIdentifier
|
|
@@ -58,6 +59,7 @@ resource_keys: # specific to resource types
|
|
|
58
59
|
passthrough_parent_keys:
|
|
59
60
|
- AWS::CloudFormation::Init # configSets https://amzn.to/33iPI2Y
|
|
60
61
|
- Fn::Sub # https://amzn.to/2HKwxri
|
|
62
|
+
- Parameters # AWS::RDS::DBClusterParameterGroup Parameters property
|
|
61
63
|
- ResponseParameters # API Gateway MethodResponse https://amzn.to/2HKw0Wk
|
|
64
|
+
- Tags
|
|
62
65
|
- Variables # Lambda Environment Variables https://amzn.to/2HLlttV
|
|
63
|
-
- Parameters # AWS::RDS::DBClusterParameterGroup Parameters property
|
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
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -134,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
134
134
|
- !ruby/object:Gem::Version
|
|
135
135
|
version: '0'
|
|
136
136
|
requirements: []
|
|
137
|
-
rubygems_version: 3.
|
|
137
|
+
rubygems_version: 3.4.20
|
|
138
138
|
signing_key:
|
|
139
139
|
specification_version: 4
|
|
140
140
|
summary: Cfn Camelizer
|