cfndsl 1.0.5 → 1.0.6
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/.rubocop.yml +3 -2
- data/CHANGELOG.md +15 -1
- data/cfndsl.gemspec +1 -1
- data/lib/cfndsl/aws/patches/500_BadTagsv13.0.0_patch.json +51 -0
- data/lib/cfndsl/aws/resource_specification.json +4528 -3459
- data/lib/cfndsl/cfnlego/cloudformation.rb +1 -1
- data/lib/cfndsl/jsonable.rb +1 -1
- data/lib/cfndsl/version.rb +1 -1
- metadata +4 -3
data/lib/cfndsl/jsonable.rb
CHANGED
|
@@ -169,7 +169,7 @@ module CfnDsl
|
|
|
169
169
|
def check_names
|
|
170
170
|
return if instance_variable_get('@Resources').nil?
|
|
171
171
|
|
|
172
|
-
instance_variable_get('@Resources').
|
|
172
|
+
instance_variable_get('@Resources').each_key do |name|
|
|
173
173
|
next unless name !~ /\A\p{Alnum}+\z/
|
|
174
174
|
|
|
175
175
|
warn "Resource name: #{name} is invalid"
|
data/lib/cfndsl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cfndsl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven Jack
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: exe
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2020-
|
|
14
|
+
date: 2020-04-23 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: bundler
|
|
@@ -70,6 +70,7 @@ files:
|
|
|
70
70
|
- lib/cfndsl/aws/patches/000_sam.spec.json
|
|
71
71
|
- lib/cfndsl/aws/patches/100_sam.spec_DeploymentPreference_patch.json
|
|
72
72
|
- lib/cfndsl/aws/patches/200_Scrutinies_patch.json
|
|
73
|
+
- lib/cfndsl/aws/patches/500_BadTagsv13.0.0_patch.json
|
|
73
74
|
- lib/cfndsl/aws/patches/500_Cognito_IdentityPoolRoleAttachment_patches.json
|
|
74
75
|
- lib/cfndsl/aws/patches/500_IoT1Click_patch_PlacementTemplate_DeviceTemplates.json
|
|
75
76
|
- lib/cfndsl/aws/patches/500_NetworkAclEntry_patch.json
|
|
@@ -183,7 +184,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
183
184
|
requirements:
|
|
184
185
|
- - "~>"
|
|
185
186
|
- !ruby/object:Gem::Version
|
|
186
|
-
version: '2.
|
|
187
|
+
version: '2.4'
|
|
187
188
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
189
|
requirements:
|
|
189
190
|
- - ">="
|