cfndsl 1.8.0 → 1.9.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/.github/workflows/spec.yml +3 -2
- data/.github/workflows/spec_latest.yml +23 -0
- data/.github/workflows/spec_publish.yml +2 -2
- data/CHANGELOG.md +34 -4
- data/Gemfile.lock +211 -138
- data/README.md +4 -3
- data/Rakefile +2 -1
- data/lib/cfndsl/aws/patches/500_BadTagsv13.0.0_patch.json +1 -0
- data/lib/cfndsl/aws/patches/500_BadTagsv16.2.0_patch.json +1 -0
- data/lib/cfndsl/aws/region_spec_urls.json +38 -0
- data/lib/cfndsl/aws/resource_specification.json +27175 -3552
- data/lib/cfndsl/globals.rb +32 -4
- data/lib/cfndsl/rake_task.rb +6 -6
- data/lib/cfndsl/runner.rb +6 -2
- data/lib/cfndsl/version.rb +1 -1
- data/lib/deep_merge/core.rb +2 -2
- data/spec/cli_spec.rb +15 -2
- data/spec/region_spec_availability_spec.rb +37 -0
- data/spec/region_spec_urls_spec.rb +83 -0
- metadata +7 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 001aabde000b98120d1279898a5323aa14ad106ea9a5cbbd1da5ca8f9b043d24
|
|
4
|
+
data.tar.gz: 6c7433d6005de618c13372ce93cd662e7ba7d51275b78f3e261d642470c3ce5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa4c9c7ff539ea8e6af9d58a65083be5dbe06a90b55e37fd9ee3c45f8a3f2079b7af120a6c4ee1c4a34876eccbf1f8b8713e71f54fe507c0276d01dd7ca493e0
|
|
7
|
+
data.tar.gz: b4a0c991c9b6066754e291b5673bcfb18e41697f65013e1296d422d3695efb6e31397daa8e9222ca6a6450f7dd856f59546eb86a61004e6a7d15151b298fcd2b
|
data/.github/workflows/spec.yml
CHANGED
|
@@ -4,6 +4,7 @@ on:
|
|
|
4
4
|
push:
|
|
5
5
|
branches:
|
|
6
6
|
- "**"
|
|
7
|
+
pull_request:
|
|
7
8
|
env:
|
|
8
9
|
BUNDLE_FROZEN: "true"
|
|
9
10
|
jobs:
|
|
@@ -13,10 +14,10 @@ jobs:
|
|
|
13
14
|
|
|
14
15
|
strategy:
|
|
15
16
|
matrix:
|
|
16
|
-
ruby-version: ['
|
|
17
|
+
ruby-version: ['3.3', '3.4']
|
|
17
18
|
|
|
18
19
|
steps:
|
|
19
|
-
- uses: actions/checkout@
|
|
20
|
+
- uses: actions/checkout@v7
|
|
20
21
|
- name: Set up Ruby ${{ matrix.ruby-version }}
|
|
21
22
|
uses: ruby/setup-ruby@v1
|
|
22
23
|
with:
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: CFN Nightly
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: '42 1 * * *' # ~11:42am AEST / 12:42pm AEDT
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test-latest-spec:
|
|
10
|
+
if: github.repository == 'cfndsl/cfndsl' || github.event_name == 'workflow_dispatch'
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v7
|
|
15
|
+
- name: Set up Ruby
|
|
16
|
+
uses: ruby/setup-ruby@v1
|
|
17
|
+
with:
|
|
18
|
+
ruby-version: '3.4'
|
|
19
|
+
bundler-cache: true
|
|
20
|
+
- name: Update to latest CloudFormation spec
|
|
21
|
+
run: bundle exec rake "update_cfn_spec[latest]"
|
|
22
|
+
- name: Run tests
|
|
23
|
+
run: bundle exec rspec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v1.9.4](https://github.com/cfndsl/cfndsl/tree/v1.9.4) (2026-07-19)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.9.3...v1.9.4)
|
|
6
|
+
|
|
7
|
+
## [v1.9.3](https://github.com/cfndsl/cfndsl/tree/v1.9.3) (2026-07-19)
|
|
8
|
+
|
|
9
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.9.2...v1.9.3)
|
|
10
|
+
|
|
11
|
+
## [v1.9.2](https://github.com/cfndsl/cfndsl/tree/v1.9.2) (2026-07-19)
|
|
12
|
+
|
|
13
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.9.1...v1.9.2)
|
|
14
|
+
|
|
15
|
+
## [v1.9.1](https://github.com/cfndsl/cfndsl/tree/v1.9.1) (2026-07-19)
|
|
16
|
+
|
|
17
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.9.0...v1.9.1)
|
|
18
|
+
|
|
19
|
+
## [v1.9.0](https://github.com/cfndsl/cfndsl/tree/v1.9.0) (2026-07-19)
|
|
20
|
+
|
|
21
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.8.0...v1.9.0)
|
|
22
|
+
|
|
23
|
+
**Closed issues:**
|
|
24
|
+
|
|
25
|
+
- 500\_BadTagsv13.0.0\_patch.json has no fixed ceiling, so it unconditionally tries \(and fails\) to remove AWS::CloudWatch::InsightRule.Tags on every modern resource spec [\#501](https://github.com/cfndsl/cfndsl/issues/501)
|
|
26
|
+
|
|
27
|
+
**Merged pull requests:**
|
|
28
|
+
|
|
29
|
+
- ci: run spec workflow on pull requests [\#504](https://github.com/cfndsl/cfndsl/pull/504) ([lwoggardner](https://github.com/lwoggardner))
|
|
30
|
+
- Add region-aware specification download [\#503](https://github.com/cfndsl/cfndsl/pull/503) ([lwoggardner](https://github.com/lwoggardner))
|
|
31
|
+
- Add fixed version ceiling to unbounded patch files [\#502](https://github.com/cfndsl/cfndsl/pull/502) ([lwoggardner](https://github.com/lwoggardner))
|
|
32
|
+
|
|
33
|
+
## [v1.8.0](https://github.com/cfndsl/cfndsl/tree/v1.8.0) (2026-07-07)
|
|
34
|
+
|
|
35
|
+
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.7.4...v1.8.0)
|
|
36
|
+
|
|
3
37
|
## [v1.7.4](https://github.com/cfndsl/cfndsl/tree/v1.7.4) (2026-07-07)
|
|
4
38
|
|
|
5
39
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.7.3...v1.7.4)
|
|
@@ -368,10 +402,6 @@
|
|
|
368
402
|
|
|
369
403
|
[Full Changelog](https://github.com/cfndsl/cfndsl/compare/v0.17.1...v0.17.2)
|
|
370
404
|
|
|
371
|
-
**Fixed bugs:**
|
|
372
|
-
|
|
373
|
-
- update rubygems api key [\#416](https://github.com/cfndsl/cfndsl/pull/416) ([gergnz](https://github.com/gergnz))
|
|
374
|
-
|
|
375
405
|
**Closed issues:**
|
|
376
406
|
|
|
377
407
|
- Support for cross-parameter validation rules [\#414](https://github.com/cfndsl/cfndsl/issues/414)
|
data/Gemfile.lock
CHANGED
|
@@ -1,190 +1,263 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
cfndsl (1.
|
|
4
|
+
cfndsl (1.9.5)
|
|
5
5
|
hana (~> 1.3)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
activesupport (
|
|
11
|
-
|
|
10
|
+
activesupport (8.1.3)
|
|
11
|
+
base64
|
|
12
|
+
bigdecimal
|
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
14
|
+
connection_pool (>= 2.2.5)
|
|
15
|
+
drb
|
|
12
16
|
i18n (>= 1.6, < 2)
|
|
17
|
+
json
|
|
18
|
+
logger (>= 1.4.2)
|
|
13
19
|
minitest (>= 5.1)
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
+
securerandom (>= 0.3)
|
|
21
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
22
|
+
uri (>= 0.13.1)
|
|
23
|
+
addressable (2.9.0)
|
|
24
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
25
|
+
aruba (2.4.1)
|
|
26
|
+
bundler (>= 1.17)
|
|
20
27
|
contracts (>= 0.16.0, < 0.18.0)
|
|
21
|
-
cucumber (>=
|
|
22
|
-
|
|
28
|
+
cucumber (>= 8.0, < 12.0)
|
|
29
|
+
irb (~> 1.16)
|
|
30
|
+
rspec-expectations (>= 3.4, < 5.0)
|
|
23
31
|
thor (~> 1.0)
|
|
24
|
-
ast (2.4.
|
|
25
|
-
async (
|
|
26
|
-
console (~> 1.
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
async
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
32
|
+
ast (2.4.3)
|
|
33
|
+
async (2.42.0)
|
|
34
|
+
console (~> 1.29)
|
|
35
|
+
fiber-annotation
|
|
36
|
+
io-event (~> 1.11)
|
|
37
|
+
metrics (~> 0.12)
|
|
38
|
+
traces (~> 0.18)
|
|
39
|
+
async-http (0.95.1)
|
|
40
|
+
async (>= 2.10.2)
|
|
41
|
+
async-pool (~> 0.11)
|
|
42
|
+
io-endpoint (~> 0.14)
|
|
43
|
+
io-stream (~> 0.6)
|
|
44
|
+
metrics (~> 0.12)
|
|
45
|
+
protocol-http (~> 0.62)
|
|
46
|
+
protocol-http1 (~> 0.39)
|
|
47
|
+
protocol-http2 (~> 0.26)
|
|
48
|
+
protocol-url (~> 0.2)
|
|
49
|
+
traces (~> 0.10)
|
|
50
|
+
async-http-faraday (0.22.2)
|
|
38
51
|
async-http (~> 0.42)
|
|
39
52
|
faraday
|
|
40
|
-
async-
|
|
41
|
-
async
|
|
42
|
-
async-pool (0.3.10)
|
|
43
|
-
async (>= 1.25)
|
|
53
|
+
async-pool (0.11.2)
|
|
54
|
+
async (>= 2.0)
|
|
44
55
|
base64 (0.3.0)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
cucumber-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
cucumber-
|
|
70
|
-
|
|
71
|
-
cucumber-messages (
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
cucumber-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
56
|
+
benchmark (0.5.0)
|
|
57
|
+
bigdecimal (4.1.2)
|
|
58
|
+
brakeman (5.4.1)
|
|
59
|
+
builder (3.3.0)
|
|
60
|
+
concurrent-ruby (1.3.7)
|
|
61
|
+
connection_pool (3.0.2)
|
|
62
|
+
console (1.37.0)
|
|
63
|
+
fiber-annotation
|
|
64
|
+
fiber-local (~> 1.1)
|
|
65
|
+
json
|
|
66
|
+
contracts (0.17.3)
|
|
67
|
+
cucumber (11.1.1)
|
|
68
|
+
base64 (~> 0.2)
|
|
69
|
+
builder (~> 3.2)
|
|
70
|
+
cucumber-ci-environment (> 9, < 12)
|
|
71
|
+
cucumber-core (>= 16.2.0, < 17)
|
|
72
|
+
cucumber-cucumber-expressions (> 17, < 20)
|
|
73
|
+
cucumber-html-formatter (> 21, < 24)
|
|
74
|
+
diff-lcs (~> 1.5)
|
|
75
|
+
logger (~> 1.6)
|
|
76
|
+
mini_mime (~> 1.1)
|
|
77
|
+
multi_test (~> 1.1)
|
|
78
|
+
sys-uname (~> 1.5)
|
|
79
|
+
cucumber-ci-environment (11.0.0)
|
|
80
|
+
cucumber-core (16.2.0)
|
|
81
|
+
cucumber-gherkin (> 36, < 40)
|
|
82
|
+
cucumber-messages (> 31, < 33)
|
|
83
|
+
cucumber-tag-expressions (> 6, < 9)
|
|
84
|
+
cucumber-cucumber-expressions (19.0.1)
|
|
85
|
+
bigdecimal
|
|
86
|
+
cucumber-gherkin (39.1.0)
|
|
87
|
+
cucumber-messages (>= 31, < 33)
|
|
88
|
+
cucumber-html-formatter (23.1.0)
|
|
89
|
+
cucumber-messages (> 23, < 33)
|
|
90
|
+
cucumber-messages (32.3.1)
|
|
91
|
+
cucumber-tag-expressions (8.1.0)
|
|
92
|
+
diff-lcs (1.6.2)
|
|
93
|
+
drb (2.2.3)
|
|
94
|
+
erb (6.0.5)
|
|
95
|
+
faraday (2.14.3)
|
|
96
|
+
faraday-net_http (>= 2.0, < 3.5)
|
|
97
|
+
json
|
|
98
|
+
logger
|
|
99
|
+
faraday-http-cache (2.7.0)
|
|
82
100
|
faraday (>= 0.8)
|
|
83
|
-
faraday-net_http (
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
101
|
+
faraday-net_http (3.4.4)
|
|
102
|
+
net-http (~> 0.5)
|
|
103
|
+
ffi (1.17.4)
|
|
104
|
+
ffi (1.17.4-arm64-darwin)
|
|
105
|
+
ffi (1.17.4-x86_64-linux-gnu)
|
|
106
|
+
fiber-annotation (0.2.0)
|
|
107
|
+
fiber-local (1.1.0)
|
|
108
|
+
fiber-storage
|
|
109
|
+
fiber-storage (1.0.1)
|
|
110
|
+
github_changelog_generator (1.18.0)
|
|
87
111
|
activesupport
|
|
88
112
|
async (>= 1.25.0)
|
|
89
113
|
async-http-faraday
|
|
114
|
+
benchmark
|
|
90
115
|
faraday-http-cache
|
|
91
|
-
multi_json
|
|
92
116
|
octokit (~> 4.6)
|
|
93
117
|
rainbow (>= 2.2.1)
|
|
94
118
|
rake (>= 10.0)
|
|
95
119
|
hana (1.3.7)
|
|
96
|
-
i18n (1.
|
|
120
|
+
i18n (1.15.2)
|
|
97
121
|
concurrent-ruby (~> 1.0)
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
122
|
+
io-console (0.8.2)
|
|
123
|
+
io-endpoint (0.17.2)
|
|
124
|
+
io-event (1.19.2)
|
|
125
|
+
io-stream (0.13.2)
|
|
126
|
+
openssl (>= 3.3)
|
|
127
|
+
irb (1.18.0)
|
|
128
|
+
pp (>= 0.6.0)
|
|
129
|
+
prism (>= 1.3.0)
|
|
130
|
+
rdoc (>= 4.0.0)
|
|
131
|
+
reline (>= 0.4.2)
|
|
132
|
+
json (2.21.1)
|
|
133
|
+
language_server-protocol (3.17.0.6)
|
|
134
|
+
lint_roller (1.1.0)
|
|
135
|
+
logger (1.7.0)
|
|
136
|
+
memoist3 (1.0.0)
|
|
137
|
+
metrics (0.15.0)
|
|
138
|
+
mini_mime (1.1.5)
|
|
139
|
+
minitest (6.0.6)
|
|
140
|
+
drb (~> 2.0)
|
|
141
|
+
prism (~> 1.5)
|
|
104
142
|
multi_test (1.1.0)
|
|
105
|
-
|
|
106
|
-
|
|
143
|
+
net-http (0.9.1)
|
|
144
|
+
uri (>= 0.11.1)
|
|
145
|
+
octokit (4.25.1)
|
|
107
146
|
faraday (>= 1, < 3)
|
|
108
147
|
sawyer (~> 0.9)
|
|
109
|
-
|
|
148
|
+
openssl (4.0.2)
|
|
149
|
+
panolint (0.1.6)
|
|
110
150
|
brakeman (>= 4.8, < 6.0)
|
|
111
151
|
rubocop (>= 0.83, < 2.0)
|
|
112
152
|
rubocop-performance (~> 1.5)
|
|
113
153
|
rubocop-rails (~> 2.5)
|
|
114
154
|
rubocop-rake (~> 0.5)
|
|
115
155
|
rubocop-rspec (~> 2.0)
|
|
116
|
-
parallel (1.
|
|
117
|
-
parser (3.
|
|
156
|
+
parallel (2.1.0)
|
|
157
|
+
parser (3.3.12.0)
|
|
118
158
|
ast (~> 2.4.1)
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
159
|
+
racc
|
|
160
|
+
pp (0.6.4)
|
|
161
|
+
prettyprint
|
|
162
|
+
prettyprint (0.2.0)
|
|
163
|
+
prism (1.9.0)
|
|
164
|
+
protocol-hpack (1.5.1)
|
|
165
|
+
protocol-http (0.63.0)
|
|
166
|
+
protocol-http1 (0.39.0)
|
|
167
|
+
protocol-http (~> 0.62)
|
|
168
|
+
protocol-http2 (0.26.0)
|
|
124
169
|
protocol-hpack (~> 1.4)
|
|
125
|
-
protocol-http (~> 0.
|
|
126
|
-
|
|
170
|
+
protocol-http (~> 0.62)
|
|
171
|
+
protocol-url (0.4.0)
|
|
172
|
+
public_suffix (7.0.5)
|
|
127
173
|
racc (1.8.1)
|
|
128
|
-
rack (
|
|
174
|
+
rack (3.2.6)
|
|
129
175
|
rainbow (3.1.1)
|
|
130
|
-
rake (13.
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
176
|
+
rake (13.4.2)
|
|
177
|
+
rbs (4.0.3)
|
|
178
|
+
logger
|
|
179
|
+
prism (>= 1.6.0)
|
|
180
|
+
tsort
|
|
181
|
+
rdoc (8.0.0)
|
|
182
|
+
erb
|
|
183
|
+
prism (>= 1.6.0)
|
|
184
|
+
rbs (>= 4.0.0)
|
|
185
|
+
tsort
|
|
186
|
+
regexp_parser (2.12.0)
|
|
187
|
+
reline (0.6.3)
|
|
188
|
+
io-console (~> 0.5)
|
|
189
|
+
rspec (3.13.2)
|
|
190
|
+
rspec-core (~> 3.13.0)
|
|
191
|
+
rspec-expectations (~> 3.13.0)
|
|
192
|
+
rspec-mocks (~> 3.13.0)
|
|
193
|
+
rspec-core (3.13.6)
|
|
194
|
+
rspec-support (~> 3.13.0)
|
|
195
|
+
rspec-expectations (3.13.5)
|
|
140
196
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
141
|
-
rspec-support (~> 3.
|
|
142
|
-
rspec-mocks (3.
|
|
197
|
+
rspec-support (~> 3.13.0)
|
|
198
|
+
rspec-mocks (3.13.8)
|
|
143
199
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
144
|
-
rspec-support (~> 3.
|
|
145
|
-
rspec-support (3.
|
|
146
|
-
rubocop (1.
|
|
147
|
-
|
|
148
|
-
|
|
200
|
+
rspec-support (~> 3.13.0)
|
|
201
|
+
rspec-support (3.13.7)
|
|
202
|
+
rubocop (1.88.2)
|
|
203
|
+
json (~> 2.3)
|
|
204
|
+
language_server-protocol (~> 3.17.0.2)
|
|
205
|
+
lint_roller (~> 1.1.0)
|
|
206
|
+
parallel (>= 1.10)
|
|
207
|
+
parser (>= 3.3.0.2)
|
|
149
208
|
rainbow (>= 2.2.2, < 4.0)
|
|
150
|
-
regexp_parser (>=
|
|
151
|
-
|
|
152
|
-
rubocop-ast (>= 1.18.0, < 2.0)
|
|
209
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
210
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
153
211
|
ruby-progressbar (~> 1.7)
|
|
154
|
-
unicode-display_width (>=
|
|
155
|
-
rubocop-ast (1.
|
|
156
|
-
parser (>= 3.
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
212
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
213
|
+
rubocop-ast (1.50.0)
|
|
214
|
+
parser (>= 3.3.7.2)
|
|
215
|
+
prism (~> 1.7)
|
|
216
|
+
rubocop-capybara (2.23.0)
|
|
217
|
+
lint_roller (~> 1.1)
|
|
218
|
+
rubocop (~> 1.81)
|
|
219
|
+
rubocop-factory_bot (2.28.0)
|
|
220
|
+
lint_roller (~> 1.1)
|
|
221
|
+
rubocop (~> 1.72, >= 1.72.1)
|
|
222
|
+
rubocop-performance (1.26.1)
|
|
223
|
+
lint_roller (~> 1.1)
|
|
224
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
225
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
226
|
+
rubocop-rails (2.36.0)
|
|
161
227
|
activesupport (>= 4.2.0)
|
|
228
|
+
lint_roller (~> 1.1)
|
|
162
229
|
rack (>= 1.1)
|
|
163
|
-
rubocop (>= 1.
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
rubocop (
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
230
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
231
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
232
|
+
rubocop-rake (0.7.1)
|
|
233
|
+
lint_roller (~> 1.1)
|
|
234
|
+
rubocop (>= 1.72.1)
|
|
235
|
+
rubocop-rspec (2.31.0)
|
|
236
|
+
rubocop (~> 1.40)
|
|
237
|
+
rubocop-capybara (~> 2.17)
|
|
238
|
+
rubocop-factory_bot (~> 2.22)
|
|
239
|
+
rubocop-rspec_rails (~> 2.28)
|
|
240
|
+
rubocop-rspec_rails (2.29.1)
|
|
241
|
+
rubocop (~> 1.61)
|
|
242
|
+
ruby-progressbar (1.13.0)
|
|
243
|
+
sawyer (0.9.3)
|
|
171
244
|
addressable (>= 2.3.5)
|
|
172
245
|
faraday (>= 0.17.3, < 3)
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
simplecov_json_formatter (~> 0.1)
|
|
177
|
-
simplecov-html (0.12.3)
|
|
178
|
-
simplecov_json_formatter (0.1.4)
|
|
179
|
-
sys-uname (1.2.2)
|
|
246
|
+
securerandom (0.4.1)
|
|
247
|
+
simplecov (1.0.2)
|
|
248
|
+
sys-uname (1.5.1)
|
|
180
249
|
ffi (~> 1.1)
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
traces (0.
|
|
250
|
+
memoist3 (~> 1.0.0)
|
|
251
|
+
thor (1.5.0)
|
|
252
|
+
traces (0.18.2)
|
|
184
253
|
trollop (2.9.10)
|
|
185
|
-
|
|
254
|
+
tsort (0.2.0)
|
|
255
|
+
tzinfo (2.0.6)
|
|
186
256
|
concurrent-ruby (~> 1.0)
|
|
187
|
-
unicode-display_width (2.
|
|
257
|
+
unicode-display_width (3.2.0)
|
|
258
|
+
unicode-emoji (~> 4.1)
|
|
259
|
+
unicode-emoji (4.2.0)
|
|
260
|
+
uri (1.1.1)
|
|
188
261
|
yamllint (0.0.9)
|
|
189
262
|
trollop (~> 2)
|
|
190
263
|
|
data/README.md
CHANGED
|
@@ -2,6 +2,7 @@ cfndsl
|
|
|
2
2
|
======
|
|
3
3
|
|
|
4
4
|
[](https://github.com/cfndsl/cfndsl/actions/workflows/spec.yml)
|
|
5
|
+
[](https://github.com/cfndsl/cfndsl/actions/workflows/spec_latest.yml)
|
|
5
6
|
[](http://badge.fury.io/rb/cfndsl)
|
|
6
7
|
|
|
7
8
|
[AWS Cloudformation](http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide/GettingStarted.html) templates are an incredibly powerful way to build
|
|
@@ -29,13 +30,13 @@ Example for doing it system wide Ruby
|
|
|
29
30
|
|
|
30
31
|
sudo gem install cfndsl
|
|
31
32
|
|
|
32
|
-
Update the
|
|
33
|
+
Update the cloudformation specification to the latest version.
|
|
33
34
|
|
|
34
35
|
cfndsl -u
|
|
35
36
|
|
|
36
|
-
or update to a specific version
|
|
37
|
+
or update to a specific version, and/or from a different region.
|
|
37
38
|
|
|
38
|
-
cfndsl -u 7.1.0
|
|
39
|
+
cfndsl -u 7.1.0 --region ap-southeast-2
|
|
39
40
|
|
|
40
41
|
Now write a template in the dsl
|
|
41
42
|
|
data/Rakefile
CHANGED
|
@@ -88,7 +88,8 @@ task :bump, :type do |_, args|
|
|
|
88
88
|
File.write(version_path, updated_contents)
|
|
89
89
|
|
|
90
90
|
puts 'Commiting version update'
|
|
91
|
-
`
|
|
91
|
+
`bundle lock`
|
|
92
|
+
`git add #{version_path} #{changelog} Gemfile.lock`
|
|
92
93
|
`git commit --message='#{type.capitalize} release #{version}'`
|
|
93
94
|
|
|
94
95
|
puts 'Tagging release'
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_source": "https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-resource-specification.html",
|
|
3
|
+
"us-east-1": "https://d1uauaxba7bl26.cloudfront.net",
|
|
4
|
+
"us-east-2": "https://dnwj8swjjbsbt.cloudfront.net",
|
|
5
|
+
"us-west-1": "https://d68hl49wbnanq.cloudfront.net",
|
|
6
|
+
"us-west-2": "https://d201a2mn26r7lk.cloudfront.net",
|
|
7
|
+
"ap-south-1": "https://d2senuesg1djtx.cloudfront.net",
|
|
8
|
+
"ap-northeast-2": "https://d1ane3fvebulky.cloudfront.net",
|
|
9
|
+
"ap-southeast-1": "https://doigdx0kgq9el.cloudfront.net",
|
|
10
|
+
"ap-southeast-2": "https://d2stg8d246z9di.cloudfront.net",
|
|
11
|
+
"ap-northeast-1": "https://d33vqc0rt9ld30.cloudfront.net",
|
|
12
|
+
"ap-northeast-3": "https://d2zq80gdmjim8k.cloudfront.net",
|
|
13
|
+
"ca-central-1": "https://d2s8ygphhesbe7.cloudfront.net",
|
|
14
|
+
"eu-central-1": "https://d1mta8qj7i28i2.cloudfront.net",
|
|
15
|
+
"eu-west-1": "https://d3teyb21fexa9r.cloudfront.net",
|
|
16
|
+
"eu-west-2": "https://d1742qcu2c1ncx.cloudfront.net",
|
|
17
|
+
"eu-west-3": "https://d2d0mfegowb3wk.cloudfront.net",
|
|
18
|
+
"eu-north-1": "https://diy8iv58sj6ba.cloudfront.net",
|
|
19
|
+
"sa-east-1": "https://d3c9jyj3w509b0.cloudfront.net",
|
|
20
|
+
"af-south-1": "https://cfn-resource-specifications-af-south-1-prod.s3.af-south-1.amazonaws.com",
|
|
21
|
+
"ap-east-1": "https://cfn-resource-specifications-ap-east-1-prod.s3.ap-east-1.amazonaws.com",
|
|
22
|
+
"ap-south-2": "https://cfn-resource-specifications-ap-south-2-prod.s3.ap-south-2.amazonaws.com",
|
|
23
|
+
"ap-southeast-3": "https://cfn-resource-specifications-ap-southeast-3-prod.s3.ap-southeast-3.amazonaws.com",
|
|
24
|
+
"ap-southeast-4": "https://cfn-resource-specifications-ap-southeast-4-prod.s3.ap-southeast-4.amazonaws.com",
|
|
25
|
+
"ap-southeast-5": "https://cfn-resource-specifications-ap-southeast-5-prod.s3.ap-southeast-5.amazonaws.com",
|
|
26
|
+
"ca-west-1": "https://cfn-resource-specifications-ca-west-1-prod.s3.ca-west-1.amazonaws.com",
|
|
27
|
+
"eu-south-1": "https://cfn-resource-specifications-eu-south-1-prod.s3.eu-south-1.amazonaws.com",
|
|
28
|
+
"eu-south-2": "https://cfn-resource-specifications-eu-south-2-prod.s3.eu-south-2.amazonaws.com",
|
|
29
|
+
"eu-central-2": "https://cfn-resource-specifications-eu-central-2-prod.s3.eu-central-2.amazonaws.com",
|
|
30
|
+
"il-central-1": "https://cfn-resource-specifications-il-central-1-prod.s3.il-central-1.amazonaws.com",
|
|
31
|
+
"me-south-1": "https://cfn-resource-specifications-me-south-1-prod.s3.me-south-1.amazonaws.com",
|
|
32
|
+
"me-central-1": "https://cfn-resource-specifications-me-central-1-prod.s3.me-central-1.amazonaws.com",
|
|
33
|
+
"mx-central-1": "https://cfn-resource-specifications-mx-central-1-590183656522-prod.s3.mx-central-1.amazonaws.com",
|
|
34
|
+
"us-gov-east-1": "https://s3.us-gov-east-1.amazonaws.com/cfn-resource-specifications-us-gov-east-1-prod",
|
|
35
|
+
"us-gov-west-1": "https://s3.us-gov-west-1.amazonaws.com/cfn-resource-specifications-us-gov-west-1-prod",
|
|
36
|
+
"cn-north-1": "https://cfn-resource-specifications-cn-north-1-prod.s3.cn-north-1.amazonaws.com.cn",
|
|
37
|
+
"cn-northwest-1": "https://cfn-resource-specifications-cn-northwest-1-prod.s3.cn-northwest-1.amazonaws.com.cn"
|
|
38
|
+
}
|