kitchen-terraform 5.4.0 → 5.7.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9bcbe6865ba35e28aac3d217a4cbaf18d0655f4f1eb6eeb1da8b3581dfb26a21
4
- data.tar.gz: fc281daa77c16e7bcad62f11e939c883245bf5d8fc427692e0bf27eca96da934
3
+ metadata.gz: 24be7336ab4c7262f10b788ee1a05d46128685d73ad1a68ce01ab3f3249c1f57
4
+ data.tar.gz: 6049b0f5dc6956fb216179cb6c151e66c2479d9512f818f8b6541296a9642aa9
5
5
  SHA512:
6
- metadata.gz: 6da972fd9308fe99d628b9d1bd63d3ef0d76a19fcffef5786bb585e925f309ddc13cee7aae79c48c97b6fe819badda2ba8135becf73904bfa2b3b10e5af18253
7
- data.tar.gz: d9058ca17bf97bd8bbb1ffc412c26a6dbc8b9a179df591014b937af14ca13b0f2c0dc890ed330d8d8b8fc2be73a7dfa82c2588ba154e4e2179f552a61322541f
6
+ metadata.gz: '081a8c15bb44c3abf56f31c7dba176bd64ba4205c03e560af0e39d78b4c3294c02dd2829facb7c92f133f360ae2aa92ecb5d46ed195123dbc3d614b1d01107e6'
7
+ data.tar.gz: ff5019b5f8e9db143108c8f5e49d570f60e7b8cae1ae43f8b3705b2b8def44fc62a9126f70b29762e5c04962196ac22a7bc405b013ea67377ee8d41322b7495e
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # ![Kitchen-Terraform Logo][kitchen-terraform-logo] Kitchen-Terraform
2
2
 
3
- > Kitchen-Terraform enables verification of Terraform state.
3
+ > Kitchen-Terraform enables verification of infrastructure systems provisioned with Terraform.
4
4
 
5
5
  [![Gem version][gem-version-shield]][kitchen-terraform-gem]
6
6
  [![Gem downloads version][gem-downloads-version-shield]][kitchen-terraform-gem]
@@ -15,10 +15,10 @@
15
15
 
16
16
  [![Gitter chat][gitter-shield]][gitter]
17
17
 
18
- Kitchen-Terraform provides a set of [Test Kitchen][test-kitchen] plugins
19
- which enable a system to use Test Kitchen to converge a
20
- [Terraform][terraform] configuration and verify the resulting Terraform
21
- state with [InSpec][inspec] controls.
18
+ Kitchen-Terraform provides a set of [Kitchen][kitchen] plugins
19
+ which enable the use of Kitchen to converge a [Terraform][terraform]
20
+ configuration and verify the resulting infrastructure systems with
21
+ [InSpec][inspec] controls.
22
22
 
23
23
  As Kitchen-Terraform integrates several distinctive technologies in a
24
24
  nontrivial manner, reviewing the documentation of each of the
@@ -36,7 +36,7 @@ Installation instructions can be found in the
36
36
  [Terraform: Install Terraform][terraform-install] article.
37
37
 
38
38
  Kitchen-Terraform supports versions of Terraform in the interval of
39
- `>= 0.11.4, < 0.13.0`.
39
+ `>= 0.11.4, < 0.15.0`.
40
40
 
41
41
  [tfenv] can be used to manage versions of Terraform on the system.
42
42
 
@@ -75,7 +75,7 @@ the semantic versioning of the Ruby gem.
75
75
 
76
76
  ```ruby
77
77
  source "https://rubygems.org/" do
78
- gem "kitchen-terraform", "~> 5.4"
78
+ gem "kitchen-terraform", "~> 5.7"
79
79
  end
80
80
  ```
81
81
 
@@ -102,7 +102,7 @@ example.
102
102
  > Installing Kitchen-Terraform with RubyGems
103
103
 
104
104
  ```sh
105
- gem install kitchen-terraform --version 5.4.0
105
+ gem install kitchen-terraform --version 5.7.2
106
106
  ```
107
107
 
108
108
  This approach is not recommended as it requires more effort to install
@@ -128,7 +128,7 @@ Ed25519-type SSH keys.
128
128
 
129
129
  Kitchen-Terraform provides three Test Kitchen plugins which must be
130
130
  configured in a
131
- [Test Kitchen configuration file][test-kitchen-configuration-file] in
131
+ [Kitchen configuration file][kitchen-configuration-file] in
132
132
  order to successfully test Terraform configuration.
133
133
 
134
134
  The [Terraform driver][terraform-driver] manages the state of the
@@ -152,168 +152,18 @@ workaround for this problem is to use
152
152
  details about the problem are available in
153
153
  [issue #271](issue-271).
154
154
 
155
- ### Example
155
+ ### Tutorials and Examples
156
156
 
157
- This example demonstrates how to test a simple Terraform configuration
158
- which utilizes the [Docker provider][docker-provider].
159
-
160
- The test system is assumed to be running Ubuntu 17.04.
161
-
162
- Terraform, Ruby, and Bundler are assumed to have been installed on the
163
- test system as described in the [Installation](#installation) section.
164
-
165
- The [Docker Community Edition][docker-community-edition] is assumed to
166
- have been installed on the test system.
167
-
168
- The working directory on the test system is assumed to contain a
169
- hierarchy of files comprising the following blocks.
170
-
171
- > Directory hierarchy
172
-
173
- ```
174
- .
175
- ├── .kitchen.yml
176
- ├── Gemfile
177
- ├── main.tf
178
- ├── outputs.tf
179
- └── test
180
- └── integration
181
- └── example
182
- ├── controls
183
- │   ├── operating_system.rb
184
- └── inspec.yml
185
- ```
186
-
187
- > Gemfile
188
-
189
- ```ruby
190
- source "https://rubygems.org/"
191
-
192
- gem 'kitchen-terraform', '~> 5.1'
193
- ```
194
-
195
- > ./kitchen.yml (Test Kitchen configuration)
196
-
197
- ```yaml
198
- driver:
199
- name: terraform
200
-
201
- provisioner:
202
- name: terraform
203
-
204
- verifier:
205
- name: terraform
206
- systems:
207
- - name: container
208
- backend: ssh
209
- hosts_output: container_hostname
210
- password: root
211
- port: 2222
212
- user: root
213
-
214
- platforms:
215
- - name: ubuntu
216
-
217
- suites:
218
- - name: example
219
- ```
220
-
221
- Although Kitchen-Terraform supports multiple versions of Terraform,
222
- below snippets are compatible with v0.12:
223
- > ./main.tf
224
-
225
- ```hcl
226
- provider "docker" {
227
- host = "unix:///var/run/docker.sock"
228
- }
229
-
230
- data "docker_registry_image" "ubuntu" {
231
- name = "rastasheep/ubuntu-sshd:latest"
232
- }
233
-
234
- resource "docker_image" "ubuntu" {
235
- name = data.docker_registry_image.ubuntu.name
236
- pull_triggers = ["${data.docker_registry_image.ubuntu.sha256_digest}"]
237
- }
238
-
239
- resource "docker_container" "ubuntu" {
240
- image = docker_image.ubuntu.name
241
- must_run = true
242
- name = "ubuntu_container"
243
-
244
- ports {
245
- external = 2222
246
- internal = 22
247
- }
248
- }
249
- ```
250
-
251
- > ./outputs.tf
252
-
253
- ```hcl
254
- output "container_hostname" {
255
- description = "The hostname of the container."
256
- value = "127.0.0.1"
257
- }
258
- ```
259
-
260
- > ./test/integration/example/inspec.yml
261
-
262
- ```yaml
263
- name: example
264
- ```
265
-
266
- > ./test/integration/example/controls/operating_system.rb
267
-
268
- ```ruby
269
- # frozen_string_literal: true
270
-
271
- control "operating_system" do
272
- describe "the operating system" do
273
- subject do
274
- command("cat /etc/os-release").stdout
275
- end
276
-
277
- it "is Ubuntu" do
278
- is_expected.to match /Ubuntu/
279
- end
280
- end
281
- end
282
- ```
283
-
284
- Running the following command would initialize the working directory for
285
- Terraform, create a Docker container by applying the configuration file,
286
- and verify that the container is running Ubuntu.
287
-
288
- > Verifying with Kitchen-Terraform
289
-
290
- ```sh
291
- $ bundle install
292
- $ bundle exec kitchen test
293
- -----> Starting Kitchen...
294
- ...
295
- $$$$$$ Running command `terraform init...`
296
- ...
297
- $$$$$$ Running command `terraform apply...`
298
- ...
299
- docker_container.ubuntu: Creation complete after 1s...
300
-
301
- Apply complete! Resources: 2 added, 0 changed, 0 destroyed.
302
- ...
303
- Finished converging <example-ubuntu>...
304
- ...
305
- -----> Verifying <example-ubuntu>...
306
- Verifying host 'localhost' of system 'container'
307
- ...
308
- ✔ operating_system: the operating system is Ubuntu
309
- ...
310
- Profile Summary: 1 successful control, 0 control failures, 0 controls skipped
311
- ...
312
- ```
313
-
314
- More information can be found on the
157
+ Several tutorials are available on the
315
158
  [Kitchen-Terraform Tutorials][kitchen-terraform-tutorials] page.
316
159
 
160
+ The integration tests for Kitchen-Terraform can also be viewed as
161
+ examples of how it works. The
162
+ [integration test Kitchen configuration file][int-kitchen-config]
163
+ and the [integration test directory][test-directory] provide several
164
+ functional examples which exercise various features of
165
+ Kitchen-Terraform.
166
+
317
167
  ## Contributing
318
168
 
319
169
  Kitchen-Terraform thrives on community contributions.
@@ -331,7 +181,8 @@ Information about changes to Kitchen-Terraform can be found in the
331
181
 
332
182
  ## Maintainers
333
183
 
334
- Kitchen-Terraform is maintained by New Context.
184
+ Kitchen-Terraform is maintained by [community contributors][contributors]
185
+ and New Context.
335
186
 
336
187
  <img
337
188
  alt="New Context logo"
@@ -384,6 +235,7 @@ Kitchen-Terraform is distributed under the [Apache License][license].
384
235
  [code-coverage-shield]: https://img.shields.io/codeclimate/coverage/newcontext-oss/kitchen-terraform.svg
385
236
  [code-coverage]: https://codeclimate.com/github/newcontext-oss/kitchen-terraform/
386
237
  [contributing-document]: https://github.com/newcontext-oss/kitchen-terraform/blob/master/CONTRIBUTING.md
238
+ [contributors]: https://github.com/newcontext-oss/kitchen-terraform/graphs/contributors
387
239
  [docker]: https://www.docker.com/
388
240
  [docker-community-edition]: https://store.docker.com/editions/community/docker-ce-server-ubuntu
389
241
  [docker-provider]: https://www.terraform.io/docs/providers/docker/index.html
@@ -395,7 +247,10 @@ Kitchen-Terraform is distributed under the [Apache License][license].
395
247
  [hakiri-shield]: https://hakiri.io/github/newcontext-oss/kitchen-terraform/master.svg
396
248
  [hakiri]: https://hakiri.io/github/newcontext-oss/kitchen-terraform/
397
249
  [inspec]: https://www.inspec.io/
250
+ [int-kitchen-config]: https://github.com/newcontext-oss/kitchen-terraform/blob/master/kitchen.yml
398
251
  [issue-271]: https://github.com/newcontext-oss/kitchen-terraform/issues/271
252
+ [kitchen]: http://kitchen.ci/index.html
253
+ [kitchen-configuration-file]: https://docs.chef.io/config_yml_kitchen.html
399
254
  [kitchen-terraform-gem]: https://rubygems.org/gems/kitchen-terraform
400
255
  [kitchen-terraform-logo]: https://raw.githubusercontent.com/newcontext-oss/kitchen-terraform/master/assets/logo.png
401
256
  [kitchen-terraform-tutorials]: https://newcontext-oss.github.io/kitchen-terraform/tutorials/
@@ -422,8 +277,7 @@ Kitchen-Terraform is distributed under the [Apache License][license].
422
277
  [terraform-provisioner]: http://www.rubydoc.info/github/newcontext-oss/kitchen-terraform/Kitchen/Provisioner/Terraform
423
278
  [terraform-verifier]: http://www.rubydoc.info/github/newcontext-oss/kitchen-terraform/Kitchen/Verifier/Terraform
424
279
  [terraform]: https://www.terraform.io/
425
- [test-kitchen-configuration-file]: https://docs.chef.io/config_yml_kitchen.html
426
- [test-kitchen]: http://kitchen.ci/index.html
280
+ [test-directory]: https://github.com/newcontext-oss/kitchen-terraform/tree/master/test
427
281
  [tfenv]: https://github.com/kamatama41/tfenv
428
282
  [travis-build-status-shield]: https://img.shields.io/travis/com/newcontext-oss/kitchen-terraform.svg
429
283
  [travis-build-status]: https://travis-ci.com/newcontext-oss/kitchen-terraform
@@ -42,7 +42,7 @@ module Kitchen
42
42
  # @see Kitchen::Configurable#finalize_config!
43
43
  def finalize_config!(instance)
44
44
  super instance
45
- self.version_requirement = ::Gem::Requirement.new ">= 0.11.4", "< 0.13.0"
45
+ self.version_requirement = ::Gem::Requirement.new ">= 0.11.4", "< 0.15.0"
46
46
  self.workspace_name = "kitchen-terraform-#{::Shellwords.escape instance.name}"
47
47
  end
48
48
 
@@ -76,7 +76,7 @@ module Kitchen
76
76
  logger: logger,
77
77
  )
78
78
  self.logger = logger
79
- self.options = { cwd: config.fetch(:root_module_directory), timeout: config.fetch(:command_timeout) }
79
+ define_options config: config
80
80
  self.workspace_name = workspace_name
81
81
  self.destroy = ::Kitchen::Terraform::Command::Destroy.new config: config
82
82
  self.init = ::Kitchen::Terraform::Command::Init.new config: hash_config
@@ -100,6 +100,7 @@ module Kitchen
100
100
  attr_accessor(
101
101
  :command_executor,
102
102
  :destroy,
103
+ :destroy_options,
103
104
  :init,
104
105
  :logger,
105
106
  :options,
@@ -119,9 +120,16 @@ module Kitchen
119
120
  logger.warn "Finished creating the #{workspace_name} Terraform workspace."
120
121
  end
121
122
 
123
+ def define_options(config:)
124
+ self.options = { cwd: config.fetch(:root_module_directory), timeout: config.fetch(:command_timeout) }
125
+ self.destroy_options = options.merge(
126
+ environment: { "LC_ALL" => nil, "TF_IN_AUTOMATION" => "true", "TF_WARN_OUTPUT_ERRORS" => "true" }
127
+ )
128
+ end
129
+
122
130
  def destroy_infrastructure
123
131
  logger.warn "Destroying the Terraform-managed infrastructure..."
124
- command_executor.run command: destroy, options: options do |standard_output:|
132
+ command_executor.run command: destroy, options: destroy_options do |standard_output:|
125
133
  end
126
134
  logger.warn "Finished destroying the Terraform-managed infrastructure."
127
135
  end
@@ -60,7 +60,14 @@ module Kitchen
60
60
  self.host = options.fetch :host do
61
61
  ""
62
62
  end
63
+
64
+ ::Inspec::Plugin::V2::Loader.new.tap do |loader|
65
+ loader.load_all
66
+ loader.exit_on_load_error
67
+ end
68
+
63
69
  self.runner = ::Inspec::Runner.new options.merge logger: ::Inspec::Log.logger
70
+
64
71
  profile_locations.each do |profile_location|
65
72
  runner.add_target profile_location
66
73
  end
@@ -175,7 +175,7 @@ module Kitchen
175
175
  def save_outputs(parsed_outputs:, state:)
176
176
  logger.warn "Writing the output variables to the Kitchen instance state..."
177
177
  outputs_manager.save outputs: parsed_outputs, state: state
178
- logger.warn "Finished writing the output varibales to the Kitchen instance state."
178
+ logger.warn "Finished writing the output variables to the Kitchen instance state."
179
179
  end
180
180
 
181
181
  def save_variables_and_outputs(state:)
@@ -29,16 +29,17 @@ module Kitchen
29
29
  #
30
30
  # @param command [String] the command to run.
31
31
  # @param logger [Kitchen::Logger] a logger for logging messages.
32
+ # @param options [Hash] options which adjust the execution of the command.
32
33
  # @return [Kitchen::Terraform::CommandExecutor]
33
34
  def initialize(command:, logger:, options:)
34
35
  self.command = command
35
36
  self.logger = logger
36
37
  self.shell_out = ::Mixlib::ShellOut.new(
37
38
  command,
38
- options.merge(
39
- environment: { "LC_ALL" => nil, "TF_IN_AUTOMATION" => "true", "TF_WARN_OUTPUT_ERRORS" => "1" },
39
+ {
40
+ environment: { "LC_ALL" => nil, "TF_IN_AUTOMATION" => "true" },
40
41
  live_stream: logger,
41
- )
42
+ }.merge(options)
42
43
  )
43
44
  end
44
45
 
@@ -71,7 +71,7 @@ module Kitchen
71
71
 
72
72
  # @api private
73
73
  def value
74
- self.value = ::Gem::Version.new "5.4.0" if not @value
74
+ self.value = ::Gem::Version.new "5.7.2" if not @value
75
75
  @value
76
76
  end
77
77
 
@@ -160,7 +160,7 @@ module Kitchen
160
160
  def load_outputs(state:)
161
161
  logger.warn "Reading the Terraform output variables from the Kitchen instance state..."
162
162
  ::Kitchen::Terraform::OutputsManager.new.load outputs: outputs, state: state
163
- logger.warn "Finished reading the Terraform output varibales from the Kitchen instance state."
163
+ logger.warn "Finished reading the Terraform output variables from the Kitchen instance state."
164
164
  end
165
165
 
166
166
  def profile_locations
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-terraform
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.4.0
4
+ version: 5.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Lane
@@ -62,7 +62,7 @@ cert_chain:
62
62
  JH4yGDzVEYaZHaohSDcYuGLK6OQylPu7oM75S+TNLWseDIT8bWgQk6NelVjtQQ2Q
63
63
  XSbgfu863jyey/0qO01cUo3+iTqzl85cWg==
64
64
  -----END CERTIFICATE-----
65
- date: 2020-06-01 00:00:00.000000000 Z
65
+ date: 2021-03-09 00:00:00.000000000 Z
66
66
  dependencies:
67
67
  - !ruby/object:Gem::Dependency
68
68
  name: bundler
@@ -205,145 +205,131 @@ dependencies:
205
205
  - !ruby/object:Gem::Version
206
206
  version: '4.2'
207
207
  - !ruby/object:Gem::Dependency
208
- name: mini_racer
209
- requirement: !ruby/object:Gem::Requirement
210
- requirements:
211
- - - "~>"
212
- - !ruby/object:Gem::Version
213
- version: 0.2.0
214
- type: :development
215
- prerelease: false
216
- version_requirements: !ruby/object:Gem::Requirement
217
- requirements:
218
- - - "~>"
219
- - !ruby/object:Gem::Version
220
- version: 0.2.0
221
- - !ruby/object:Gem::Dependency
222
- name: pry-coolline
208
+ name: rspec
223
209
  requirement: !ruby/object:Gem::Requirement
224
210
  requirements:
225
211
  - - "~>"
226
212
  - !ruby/object:Gem::Version
227
- version: '0.2'
213
+ version: '3.4'
228
214
  type: :development
229
215
  prerelease: false
230
216
  version_requirements: !ruby/object:Gem::Requirement
231
217
  requirements:
232
218
  - - "~>"
233
219
  - !ruby/object:Gem::Version
234
- version: '0.2'
220
+ version: '3.4'
235
221
  - !ruby/object:Gem::Dependency
236
- name: pry
222
+ name: rufo
237
223
  requirement: !ruby/object:Gem::Requirement
238
224
  requirements:
239
225
  - - "~>"
240
226
  - !ruby/object:Gem::Version
241
- version: '0.10'
227
+ version: '0.7'
242
228
  type: :development
243
229
  prerelease: false
244
230
  version_requirements: !ruby/object:Gem::Requirement
245
231
  requirements:
246
232
  - - "~>"
247
233
  - !ruby/object:Gem::Version
248
- version: '0.10'
234
+ version: '0.7'
249
235
  - !ruby/object:Gem::Dependency
250
- name: reek
236
+ name: simplecov
251
237
  requirement: !ruby/object:Gem::Requirement
252
238
  requirements:
253
239
  - - "~>"
254
240
  - !ruby/object:Gem::Version
255
- version: '5.5'
241
+ version: 0.16.1
256
242
  type: :development
257
243
  prerelease: false
258
244
  version_requirements: !ruby/object:Gem::Requirement
259
245
  requirements:
260
246
  - - "~>"
261
247
  - !ruby/object:Gem::Version
262
- version: '5.5'
248
+ version: 0.16.1
263
249
  - !ruby/object:Gem::Dependency
264
- name: rspec
250
+ name: travis
265
251
  requirement: !ruby/object:Gem::Requirement
266
252
  requirements:
267
253
  - - "~>"
268
254
  - !ruby/object:Gem::Version
269
- version: '3.4'
255
+ version: '1.8'
270
256
  type: :development
271
257
  prerelease: false
272
258
  version_requirements: !ruby/object:Gem::Requirement
273
259
  requirements:
274
260
  - - "~>"
275
261
  - !ruby/object:Gem::Version
276
- version: '3.4'
262
+ version: '1.8'
277
263
  - !ruby/object:Gem::Dependency
278
- name: rufo
264
+ name: yard
279
265
  requirement: !ruby/object:Gem::Requirement
280
266
  requirements:
281
267
  - - "~>"
282
268
  - !ruby/object:Gem::Version
283
- version: '0.7'
269
+ version: '0.9'
284
270
  type: :development
285
271
  prerelease: false
286
272
  version_requirements: !ruby/object:Gem::Requirement
287
273
  requirements:
288
274
  - - "~>"
289
275
  - !ruby/object:Gem::Version
290
- version: '0.7'
276
+ version: '0.9'
291
277
  - !ruby/object:Gem::Dependency
292
- name: simplecov
278
+ name: reek
293
279
  requirement: !ruby/object:Gem::Requirement
294
280
  requirements:
295
281
  - - "~>"
296
282
  - !ruby/object:Gem::Version
297
- version: 0.16.1
283
+ version: 6.0.2
298
284
  type: :development
299
285
  prerelease: false
300
286
  version_requirements: !ruby/object:Gem::Requirement
301
287
  requirements:
302
288
  - - "~>"
303
289
  - !ruby/object:Gem::Version
304
- version: 0.16.1
290
+ version: 6.0.2
305
291
  - !ruby/object:Gem::Dependency
306
- name: travis
292
+ name: delegate
307
293
  requirement: !ruby/object:Gem::Requirement
308
294
  requirements:
309
295
  - - "~>"
310
296
  - !ruby/object:Gem::Version
311
- version: '1.8'
312
- type: :development
297
+ version: 0.1.0
298
+ type: :runtime
313
299
  prerelease: false
314
300
  version_requirements: !ruby/object:Gem::Requirement
315
301
  requirements:
316
302
  - - "~>"
317
303
  - !ruby/object:Gem::Version
318
- version: '1.8'
304
+ version: 0.1.0
319
305
  - !ruby/object:Gem::Dependency
320
- name: yard
306
+ name: dry-validation
321
307
  requirement: !ruby/object:Gem::Requirement
322
308
  requirements:
323
309
  - - "~>"
324
310
  - !ruby/object:Gem::Version
325
- version: '0.9'
326
- type: :development
311
+ version: '0.13'
312
+ type: :runtime
327
313
  prerelease: false
328
314
  version_requirements: !ruby/object:Gem::Requirement
329
315
  requirements:
330
316
  - - "~>"
331
317
  - !ruby/object:Gem::Version
332
- version: '0.9'
318
+ version: '0.13'
333
319
  - !ruby/object:Gem::Dependency
334
- name: dry-validation
320
+ name: mixlib-shellout
335
321
  requirement: !ruby/object:Gem::Requirement
336
322
  requirements:
337
323
  - - "~>"
338
324
  - !ruby/object:Gem::Version
339
- version: '0.13'
325
+ version: '3.0'
340
326
  type: :runtime
341
327
  prerelease: false
342
328
  version_requirements: !ruby/object:Gem::Requirement
343
329
  requirements:
344
330
  - - "~>"
345
331
  - !ruby/object:Gem::Version
346
- version: '0.13'
332
+ version: '3.0'
347
333
  - !ruby/object:Gem::Dependency
348
334
  name: inspec
349
335
  requirement: !ruby/object:Gem::Requirement
@@ -351,6 +337,15 @@ dependencies:
351
337
  - - ">="
352
338
  - !ruby/object:Gem::Version
353
339
  version: '3'
340
+ - - "!="
341
+ - !ruby/object:Gem::Version
342
+ version: 4.24.26
343
+ - - "!="
344
+ - !ruby/object:Gem::Version
345
+ version: 4.24.28
346
+ - - "!="
347
+ - !ruby/object:Gem::Version
348
+ version: 4.24.32
354
349
  - - "<"
355
350
  - !ruby/object:Gem::Version
356
351
  version: '5'
@@ -361,6 +356,15 @@ dependencies:
361
356
  - - ">="
362
357
  - !ruby/object:Gem::Version
363
358
  version: '3'
359
+ - - "!="
360
+ - !ruby/object:Gem::Version
361
+ version: 4.24.26
362
+ - - "!="
363
+ - !ruby/object:Gem::Version
364
+ version: 4.24.28
365
+ - - "!="
366
+ - !ruby/object:Gem::Version
367
+ version: 4.24.32
364
368
  - - "<"
365
369
  - !ruby/object:Gem::Version
366
370
  version: '5'
@@ -370,28 +374,14 @@ dependencies:
370
374
  requirements:
371
375
  - - "~>"
372
376
  - !ruby/object:Gem::Version
373
- version: '2.2'
377
+ version: '2.3'
374
378
  type: :runtime
375
379
  prerelease: false
376
380
  version_requirements: !ruby/object:Gem::Requirement
377
381
  requirements:
378
382
  - - "~>"
379
383
  - !ruby/object:Gem::Version
380
- version: '2.2'
381
- - !ruby/object:Gem::Dependency
382
- name: mixlib-shellout
383
- requirement: !ruby/object:Gem::Requirement
384
- requirements:
385
- - - "~>"
386
- - !ruby/object:Gem::Version
387
- version: '3.0'
388
- type: :runtime
389
- prerelease: false
390
- version_requirements: !ruby/object:Gem::Requirement
391
- requirements:
392
- - - "~>"
393
- - !ruby/object:Gem::Version
394
- version: '3.0'
384
+ version: '2.3'
395
385
  - !ruby/object:Gem::Dependency
396
386
  name: test-kitchen
397
387
  requirement: !ruby/object:Gem::Requirement
@@ -552,7 +542,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
552
542
  - !ruby/object:Gem::Version
553
543
  version: '0'
554
544
  requirements:
555
- - Terraform >= v0.11.4, < v0.13.0
545
+ - Terraform >= v0.11.4, < v0.15.0
556
546
  rubygems_version: 3.0.3
557
547
  signing_key:
558
548
  specification_version: 4
metadata.gz.sig CHANGED
Binary file