kitchen-terraform 5.6.0 → 6.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/README.md +19 -19
- data/lib/kitchen/driver/terraform.rb +1 -1
- data/lib/kitchen/provisioner/terraform.rb +1 -1
- data/lib/kitchen/terraform.rb +1 -1
- data/lib/kitchen/terraform/breaking.rb +1 -1
- data/lib/kitchen/terraform/command.rb +1 -1
- data/lib/kitchen/terraform/command/apply.rb +1 -1
- data/lib/kitchen/terraform/command/destroy.rb +1 -1
- data/lib/kitchen/terraform/command/get.rb +1 -1
- data/lib/kitchen/terraform/command/init.rb +3 -80
- data/lib/kitchen/terraform/command/init/post_zero_fifteen_zero.rb +89 -0
- data/lib/kitchen/terraform/command/init/pre_zero_fifteen_zero.rb +101 -0
- data/lib/kitchen/terraform/command/init_factory.rb +52 -0
- data/lib/kitchen/terraform/command/output.rb +1 -1
- data/lib/kitchen/terraform/command/validate.rb +3 -41
- data/lib/kitchen/terraform/command/validate/post_zero_fifteen_zero.rb +51 -0
- data/lib/kitchen/terraform/command/validate/pre_zero_fifteen_zero.rb +65 -0
- data/lib/kitchen/terraform/command/validate_factory.rb +54 -0
- data/lib/kitchen/terraform/command/version.rb +1 -1
- data/lib/kitchen/terraform/command/workspace_delete.rb +1 -1
- data/lib/kitchen/terraform/command/workspace_new.rb +1 -1
- data/lib/kitchen/terraform/command/workspace_select.rb +1 -1
- data/lib/kitchen/terraform/command_executor.rb +3 -5
- data/lib/kitchen/terraform/command_flag.rb +1 -1
- data/lib/kitchen/terraform/command_flag/backend_config.rb +1 -1
- data/lib/kitchen/terraform/command_flag/color.rb +1 -1
- data/lib/kitchen/terraform/command_flag/lock_timeout.rb +1 -1
- data/lib/kitchen/terraform/command_flag/plugin_dir.rb +1 -1
- data/lib/kitchen/terraform/command_flag/upgrade.rb +2 -2
- data/lib/kitchen/terraform/command_flag/var.rb +1 -1
- data/lib/kitchen/terraform/command_flag/var_file.rb +1 -1
- data/lib/kitchen/terraform/config_attribute.rb +1 -1
- data/lib/kitchen/terraform/config_attribute/backend_configurations.rb +1 -1
- data/lib/kitchen/terraform/config_attribute/client.rb +3 -3
- data/lib/kitchen/terraform/config_attribute/color.rb +3 -3
- data/lib/kitchen/terraform/config_attribute/command_timeout.rb +1 -1
- data/lib/kitchen/terraform/config_attribute/fail_fast.rb +3 -3
- data/lib/kitchen/terraform/config_attribute/lock.rb +3 -3
- data/lib/kitchen/terraform/config_attribute/lock_timeout.rb +1 -1
- data/lib/kitchen/terraform/config_attribute/parallelism.rb +1 -1
- data/lib/kitchen/terraform/config_attribute/plugin_directory.rb +3 -3
- data/lib/kitchen/terraform/config_attribute/root_module_directory.rb +3 -3
- data/lib/kitchen/terraform/config_attribute/systems.rb +552 -4
- data/lib/kitchen/terraform/config_attribute/variable_files.rb +3 -3
- data/lib/kitchen/terraform/config_attribute/variables.rb +1 -1
- data/lib/kitchen/terraform/config_attribute/verify_version.rb +3 -3
- data/lib/kitchen/terraform/config_attribute_cacher.rb +1 -1
- data/lib/kitchen/terraform/{config_predicates.rb → config_attribute_contract.rb} +3 -3
- data/lib/kitchen/terraform/config_attribute_contract/array_of_strings.rb +30 -0
- data/lib/kitchen/terraform/{config_schemas → config_attribute_contract}/boolean.rb +7 -11
- data/lib/kitchen/terraform/config_attribute_contract/hash_of_symbols_and_strings.rb +41 -0
- data/lib/kitchen/terraform/{config_schemas.rb → config_attribute_contract/integer.rb} +10 -3
- data/lib/kitchen/terraform/config_attribute_contract/optional_string.rb +30 -0
- data/lib/kitchen/terraform/{config_schemas → config_attribute_contract}/string.rb +7 -9
- data/lib/kitchen/terraform/config_attribute_contract/systems.rb +63 -0
- data/lib/kitchen/terraform/config_attribute_definer.rb +2 -2
- data/lib/kitchen/terraform/config_attribute_type.rb +1 -1
- data/lib/kitchen/terraform/config_attribute_type/hash_of_symbols_and_strings.rb +9 -16
- data/lib/kitchen/terraform/config_attribute_type/integer.rb +27 -23
- data/lib/kitchen/terraform/configurable.rb +2 -2
- data/lib/kitchen/terraform/debug_logger.rb +1 -1
- data/lib/kitchen/terraform/deprecating.rb +1 -1
- data/lib/kitchen/terraform/driver.rb +1 -1
- data/lib/kitchen/terraform/driver/create.rb +39 -16
- data/lib/kitchen/terraform/driver/destroy.rb +53 -21
- data/lib/kitchen/terraform/error.rb +1 -1
- data/lib/kitchen/terraform/file_path_config_attribute_definer.rb +1 -1
- data/lib/kitchen/terraform/inspec.rb +1 -1
- data/lib/kitchen/terraform/inspec/fail_fast_with_hosts.rb +1 -1
- data/lib/kitchen/terraform/inspec/fail_slow_with_hosts.rb +1 -1
- data/lib/kitchen/terraform/inspec/without_hosts.rb +1 -1
- data/lib/kitchen/terraform/inspec_factory.rb +1 -1
- data/lib/kitchen/terraform/inspec_options_factory.rb +1 -1
- data/lib/kitchen/terraform/inspec_runner.rb +8 -1
- data/lib/kitchen/terraform/outputs_manager.rb +1 -1
- data/lib/kitchen/terraform/outputs_parser.rb +1 -1
- data/lib/kitchen/terraform/outputs_reader.rb +2 -2
- data/lib/kitchen/terraform/provisioner.rb +1 -1
- data/lib/kitchen/terraform/provisioner/converge.rb +52 -25
- data/lib/kitchen/terraform/raise.rb +1 -1
- data/lib/kitchen/terraform/raise/action_failed.rb +1 -1
- data/lib/kitchen/terraform/raise/client_error.rb +1 -1
- data/lib/kitchen/terraform/shell_out.rb +6 -5
- data/lib/kitchen/terraform/system.rb +1 -1
- data/lib/kitchen/terraform/system_attrs_inputs_resolver.rb +1 -1
- data/lib/kitchen/terraform/system_attrs_outputs_resolver.rb +1 -1
- data/lib/kitchen/terraform/system_bastion_host_resolver.rb +1 -1
- data/lib/kitchen/terraform/system_hosts_resolver.rb +1 -1
- data/lib/kitchen/terraform/system_inspec_map.rb +1 -1
- data/lib/kitchen/terraform/systems_verifier.rb +1 -1
- data/lib/kitchen/terraform/systems_verifier/fail_fast.rb +1 -1
- data/lib/kitchen/terraform/systems_verifier/fail_slow.rb +1 -1
- data/lib/kitchen/terraform/systems_verifier_factory.rb +1 -1
- data/lib/kitchen/terraform/unsupported_client_version_error.rb +1 -1
- data/lib/kitchen/terraform/variables_manager.rb +1 -1
- data/lib/kitchen/terraform/verify_version.rb +5 -17
- data/lib/kitchen/terraform/verify_version_rescue_strategy.rb +1 -1
- data/lib/kitchen/terraform/verify_version_rescue_strategy/permissive.rb +1 -1
- data/lib/kitchen/terraform/verify_version_rescue_strategy/strict.rb +1 -1
- data/lib/kitchen/terraform/verify_version_rescue_strategy_factory.rb +1 -1
- data/lib/kitchen/terraform/version.rb +2 -2
- data/lib/kitchen/terraform/version_verifier.rb +1 -1
- data/lib/kitchen/terraform/version_verifier_strategy.rb +1 -1
- data/lib/kitchen/terraform/version_verifier_strategy/supported.rb +1 -1
- data/lib/kitchen/terraform/version_verifier_strategy/unsupported.rb +1 -1
- data/lib/kitchen/terraform/version_verifier_strategy_factory.rb +1 -1
- data/lib/kitchen/verifier/terraform.rb +1 -1
- metadata +88 -53
- metadata.gz.sig +0 -0
- data/lib/kitchen/terraform/config_predicates/hash_of_symbols_and_strings.rb +0 -81
- data/lib/kitchen/terraform/config_schemas/array_of_strings.rb +0 -38
- data/lib/kitchen/terraform/config_schemas/optional_string.rb +0 -38
- data/lib/kitchen/terraform/config_schemas/system.rb +0 -609
- data/lib/kitchen/terraform/config_schemas/systems.rb +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3817060a934ee0a8712bcb0f68b4ba6662078276216384e26d01f74f5fe2608
|
4
|
+
data.tar.gz: e477a746be09e08cc3c611c9fe679e4d2ccc620e216021755c14940f65834b06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0557d8153736088165d4f9d14b0ebcc9b36a703fc1f31eaf2ef4e8aa3895e70e71652157c856a5cad4911ef3e99d96976ed44ac4fa7ec38e2d880714f6121254
|
7
|
+
data.tar.gz: 266fa709671ce5c8f04ad92bcd498788459ed0aaefc7fd1de598c9c79f8df640e094b0434c380a3d71ac59aa6f71acb3eb582445fa0412c91c601045c89cab05
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/README.md
CHANGED
@@ -6,8 +6,7 @@
|
|
6
6
|
[![Gem downloads version][gem-downloads-version-shield]][kitchen-terraform-gem]
|
7
7
|
[![Gem downloads total][gem-downloads-total-shield]][kitchen-terraform-gem]
|
8
8
|
|
9
|
-
[![
|
10
|
-
[![AppVeyor Build status][appveyor-build-status-shield]][appveyor-build-status]
|
9
|
+
[![Test workflow][test-workflow-shield]][test-workflow]
|
11
10
|
[![Code coverage][code-coverage-shield]][code-coverage]
|
12
11
|
[![Maintainability][maintainability-shield]][maintainability]
|
13
12
|
[![Technical debt][technical-debt-shield]][technical-debt]
|
@@ -36,7 +35,7 @@ Installation instructions can be found in the
|
|
36
35
|
[Terraform: Install Terraform][terraform-install] article.
|
37
36
|
|
38
37
|
Kitchen-Terraform supports versions of Terraform in the interval of
|
39
|
-
`>= 0.11.4, <
|
38
|
+
`>= 0.11.4, < 1.1.0`.
|
40
39
|
|
41
40
|
[tfenv] can be used to manage versions of Terraform on the system.
|
42
41
|
|
@@ -75,7 +74,7 @@ the semantic versioning of the Ruby gem.
|
|
75
74
|
|
76
75
|
```ruby
|
77
76
|
source "https://rubygems.org/" do
|
78
|
-
gem "kitchen-terraform", "~> 5.
|
77
|
+
gem "kitchen-terraform", "~> 5.7"
|
79
78
|
end
|
80
79
|
```
|
81
80
|
|
@@ -102,7 +101,7 @@ example.
|
|
102
101
|
> Installing Kitchen-Terraform with RubyGems
|
103
102
|
|
104
103
|
```sh
|
105
|
-
gem install kitchen-terraform --version
|
104
|
+
gem install kitchen-terraform --version 6.0.0
|
106
105
|
```
|
107
106
|
|
108
107
|
This approach is not recommended as it requires more effort to install
|
@@ -182,43 +181,43 @@ Information about changes to Kitchen-Terraform can be found in the
|
|
182
181
|
## Maintainers
|
183
182
|
|
184
183
|
Kitchen-Terraform is maintained by [community contributors][contributors]
|
185
|
-
and
|
184
|
+
and Copado NCS LLC.
|
186
185
|
|
187
186
|
<img
|
188
|
-
alt="
|
187
|
+
alt="Copado logo"
|
189
188
|
height="25"
|
190
|
-
src="https://raw.githubusercontent.com/newcontext-oss/kitchen-terraform/master/assets/
|
191
|
-
width="25"> [
|
189
|
+
src="https://raw.githubusercontent.com/newcontext-oss/kitchen-terraform/master/assets/copado_logo.png"
|
190
|
+
width="25"> [copado.com][copado]
|
192
191
|
|
193
192
|
<img
|
194
193
|
alt="Twitter logo"
|
195
194
|
height="25"
|
196
195
|
src="https://raw.githubusercontent.com/newcontext-oss/kitchen-terraform/master/assets/twitter_logo.png"
|
197
|
-
width="25"> [@
|
196
|
+
width="25"> [@CopadoSolutions][copado-twitter]
|
198
197
|
|
199
198
|
<img
|
200
199
|
alt="LinkedIn logo"
|
201
200
|
height="23"
|
202
201
|
src="https://raw.githubusercontent.com/newcontext-oss/kitchen-terraform/master/assets/linkedin_logo.png"
|
203
|
-
width="25"> [
|
202
|
+
width="25"> [Copado][copado-linkedin]
|
204
203
|
|
205
204
|
<img
|
206
205
|
alt="GitHub logo"
|
207
206
|
height="25"
|
208
207
|
src="https://raw.githubusercontent.com/newcontext-oss/kitchen-terraform/master/assets/github_logo.png"
|
209
|
-
width="25"> [@
|
208
|
+
width="25"> [@CopadoSolutions][copado-github]
|
210
209
|
|
211
210
|
<img
|
212
211
|
alt="Email logo"
|
213
212
|
height="16"
|
214
213
|
src="https://raw.githubusercontent.com/newcontext-oss/kitchen-terraform/master/assets/email_logo.png"
|
215
|
-
width="25"> kitchen-terraform@
|
214
|
+
width="25"> kitchen-terraform@copado.com
|
216
215
|
|
217
216
|
<img
|
218
217
|
alt="Email logo"
|
219
218
|
height="16"
|
220
219
|
src="https://raw.githubusercontent.com/newcontext-oss/kitchen-terraform/master/assets/email_logo.png"
|
221
|
-
width="25"> info@
|
220
|
+
width="25"> ss-info@copado.com
|
222
221
|
|
223
222
|
## License
|
224
223
|
|
@@ -257,10 +256,10 @@ Kitchen-Terraform is distributed under the [Apache License][license].
|
|
257
256
|
[license]: https://github.com/newcontext-oss/kitchen-terraform/blob/master/LICENSE
|
258
257
|
[maintainability-shield]: https://img.shields.io/codeclimate/maintainability-percentage/newcontext-oss/kitchen-terraform.svg
|
259
258
|
[maintainability]: https://codeclimate.com/github/newcontext-oss/kitchen-terraform/
|
260
|
-
[
|
261
|
-
[
|
262
|
-
[
|
263
|
-
[
|
259
|
+
[copado-github]: https://github.com/CopadoSolutions
|
260
|
+
[copado-linkedin]: https://www.linkedin.com/company/copado-solutions-s.l
|
261
|
+
[copado-twitter]: https://twitter.com/CopadoSolutions
|
262
|
+
[copado]: https://copado.com/
|
264
263
|
[rbenv]: https://github.com/rbenv/rbenv
|
265
264
|
[rbnacl-installation]: https://github.com/crypto-rb/rbnacl/tree/v4.0.2#installation
|
266
265
|
[ruby-branches]: https://www.ruby-lang.org/en/downloads/branches/
|
@@ -278,7 +277,8 @@ Kitchen-Terraform is distributed under the [Apache License][license].
|
|
278
277
|
[terraform-verifier]: http://www.rubydoc.info/github/newcontext-oss/kitchen-terraform/Kitchen/Verifier/Terraform
|
279
278
|
[terraform]: https://www.terraform.io/
|
280
279
|
[test-directory]: https://github.com/newcontext-oss/kitchen-terraform/tree/master/test
|
280
|
+
[test-workflow]: https://github.com/newcontext-oss/kitchen-terraform/actions/workflows/tests.yml
|
281
|
+
[test-workflow-shield]: https://github.com/newcontext-oss/kitchen-terraform/actions/workflows/tests.yml/badge.svg
|
281
282
|
[tfenv]: https://github.com/kamatama41/tfenv
|
282
283
|
[travis-build-status-shield]: https://img.shields.io/travis/com/newcontext-oss/kitchen-terraform.svg
|
283
284
|
[travis-build-status]: https://travis-ci.com/newcontext-oss/kitchen-terraform
|
284
|
-
|
data/lib/kitchen/terraform.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright 2016-
|
3
|
+
# Copyright 2016-2021 Copado NCS LLC
|
4
4
|
#
|
5
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
6
|
# you may not use this file except in compliance with the License.
|
@@ -14,88 +14,11 @@
|
|
14
14
|
# See the License for the specific language governing permissions and
|
15
15
|
# limitations under the License.
|
16
16
|
|
17
|
-
require "kitchen/terraform/command_flag/backend_config"
|
18
|
-
require "kitchen/terraform/command_flag/color"
|
19
|
-
require "kitchen/terraform/command_flag/lock_timeout"
|
20
|
-
require "kitchen/terraform/command_flag/plugin_dir"
|
21
|
-
require "kitchen/terraform/command_flag/upgrade"
|
22
|
-
|
23
17
|
module Kitchen
|
24
18
|
module Terraform
|
25
19
|
module Command
|
26
|
-
#
|
27
|
-
|
28
|
-
# -input=false \
|
29
|
-
# -lock=<lock> \
|
30
|
-
# -lock-timeout=<lock_timeout>s \
|
31
|
-
# [-no-color] \
|
32
|
-
# [-upgrade] \
|
33
|
-
# -force-copy \
|
34
|
-
# -backend=true \
|
35
|
-
# [-backend-config=<backend_configurations[0]> ...] \
|
36
|
-
# -get=true \
|
37
|
-
# -get-plugins=true \
|
38
|
-
# [-plugin-dir=<plugin_directory>] \
|
39
|
-
# -verify-plugins=true \
|
40
|
-
# <root_module_directory>
|
41
|
-
class Init
|
42
|
-
# #initialize prepares a new instance of the class.
|
43
|
-
#
|
44
|
-
# @param config [Hash] the configuration of the driver.
|
45
|
-
# @option config [Hash{String=>String}] :backend_configurations Terraform backend configuration arguments to
|
46
|
-
# complete a partial backend configuration.
|
47
|
-
# @option config [Boolean] :color a toggle of colored output from the Terraform client.
|
48
|
-
# @option config [Integer] :command_timeout the the number of seconds to wait for the command to finish running.
|
49
|
-
# @option config [Boolean] :lock a toggle of locking for the Terraform state file.
|
50
|
-
# @option config [Integer] :lock_timeout the number of seconds that the Terraform client will wait for a lock
|
51
|
-
# on the state to be obtained during operations.
|
52
|
-
# @option config [String] :plugin_directory the pathname of the directory which contains
|
53
|
-
# customized Terraform provider plugins to install in place of the official Terraform provider plugins.
|
54
|
-
# @option config [String] :root_module_directory the pathname of the directory which contains the root
|
55
|
-
# Terraform module.
|
56
|
-
# @option config [Boolean] :upgrade_during_init a toggle for upgrading modules and plugins.
|
57
|
-
# @return [Kitchen::Terraform::Command::Init]
|
58
|
-
def initialize(config:)
|
59
|
-
self.backend_config = ::Kitchen::Terraform::CommandFlag::BackendConfig.new arguments: config.fetch(
|
60
|
-
:backend_configurations
|
61
|
-
)
|
62
|
-
self.color = ::Kitchen::Terraform::CommandFlag::Color.new enabled: config.fetch(:color)
|
63
|
-
self.lock = config.fetch :lock
|
64
|
-
self.lock_timeout = ::Kitchen::Terraform::CommandFlag::LockTimeout.new duration: config.fetch(:lock_timeout)
|
65
|
-
self.plugin_dir = ::Kitchen::Terraform::CommandFlag::PluginDir.new pathname: config.fetch(
|
66
|
-
:plugin_directory
|
67
|
-
)
|
68
|
-
self.upgrade = ::Kitchen::Terraform::CommandFlag::Upgrade.new enabled: config.fetch(:upgrade_during_init)
|
69
|
-
end
|
70
|
-
|
71
|
-
# @return [String] the command with flags.
|
72
|
-
def to_s
|
73
|
-
"init " \
|
74
|
-
"-input=false " \
|
75
|
-
"-lock=#{lock} " \
|
76
|
-
"#{lock_timeout} " \
|
77
|
-
"#{color} " \
|
78
|
-
"#{upgrade} " \
|
79
|
-
"-force-copy " \
|
80
|
-
"-backend=true " \
|
81
|
-
"#{backend_config} " \
|
82
|
-
"-get=true " \
|
83
|
-
"-get-plugins=true " \
|
84
|
-
"#{plugin_dir} " \
|
85
|
-
"-verify-plugins=true"
|
86
|
-
end
|
87
|
-
|
88
|
-
private
|
89
|
-
|
90
|
-
attr_accessor(
|
91
|
-
:backend_config,
|
92
|
-
:color,
|
93
|
-
:lock,
|
94
|
-
:lock_timeout,
|
95
|
-
:options,
|
96
|
-
:plugin_dir,
|
97
|
-
:upgrade,
|
98
|
-
)
|
20
|
+
# Init is the namespace for Terraform Init commands.
|
21
|
+
module Init
|
99
22
|
end
|
100
23
|
end
|
101
24
|
end
|
@@ -0,0 +1,89 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2016-2021 Copado NCS LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require "kitchen/terraform/command_flag/backend_config"
|
18
|
+
require "kitchen/terraform/command_flag/color"
|
19
|
+
require "kitchen/terraform/command_flag/lock_timeout"
|
20
|
+
require "kitchen/terraform/command_flag/plugin_dir"
|
21
|
+
require "kitchen/terraform/command_flag/upgrade"
|
22
|
+
|
23
|
+
module Kitchen
|
24
|
+
module Terraform
|
25
|
+
module Command
|
26
|
+
module Init
|
27
|
+
# The working directory is initialized by running a command like the following example:
|
28
|
+
# terraform init \
|
29
|
+
# -backend=true \
|
30
|
+
# [-backend-config=<backend_configurations[0]> ...] \
|
31
|
+
# -force-copy \
|
32
|
+
# -get=true \
|
33
|
+
# -input=false \
|
34
|
+
# [-no-color] \
|
35
|
+
# [-plugin-dir=<plugin_directory>] \
|
36
|
+
# [-upgrade=true] \
|
37
|
+
# <root_module_directory>
|
38
|
+
class PostZeroFifteenZero
|
39
|
+
# #initialize prepares a new instance of the class.
|
40
|
+
#
|
41
|
+
# @param config [Hash] the configuration of the driver.
|
42
|
+
# @option config [Hash{String=>String}] :backend_configurations Terraform backend configuration arguments to
|
43
|
+
# complete a partial backend configuration.
|
44
|
+
# @option config [Boolean] :color a toggle of colored output from the Terraform client.
|
45
|
+
# on the state to be obtained during operations.
|
46
|
+
# @option config [String] :plugin_directory the pathname of the directory which contains
|
47
|
+
# customized Terraform provider plugins to install in place of the official Terraform provider plugins.
|
48
|
+
# @option config [Boolean] :upgrade_during_init a toggle for upgrading modules and plugins.
|
49
|
+
# @return [Kitchen::Terraform::Command::Init::PostZeroFifteenZero]
|
50
|
+
def initialize(config:)
|
51
|
+
self.backend_config = ::Kitchen::Terraform::CommandFlag::BackendConfig.new arguments: config.fetch(
|
52
|
+
:backend_configurations
|
53
|
+
)
|
54
|
+
self.color = ::Kitchen::Terraform::CommandFlag::Color.new enabled: config.fetch(:color)
|
55
|
+
self.plugin_dir = ::Kitchen::Terraform::CommandFlag::PluginDir.new pathname: config.fetch(
|
56
|
+
:plugin_directory
|
57
|
+
)
|
58
|
+
self.upgrade = ::Kitchen::Terraform::CommandFlag::Upgrade.new enabled: config.fetch(:upgrade_during_init)
|
59
|
+
end
|
60
|
+
|
61
|
+
# @return [String] the command with flags.
|
62
|
+
def to_s
|
63
|
+
"init " \
|
64
|
+
"-backend=true " \
|
65
|
+
"#{backend_config} " \
|
66
|
+
"-force-copy=true " \
|
67
|
+
"-get=true " \
|
68
|
+
"-input=false " \
|
69
|
+
"#{color} " \
|
70
|
+
"#{plugin_dir} " \
|
71
|
+
"#{upgrade}"
|
72
|
+
end
|
73
|
+
|
74
|
+
private
|
75
|
+
|
76
|
+
attr_accessor(
|
77
|
+
:backend_config,
|
78
|
+
:color,
|
79
|
+
:lock,
|
80
|
+
:lock_timeout,
|
81
|
+
:options,
|
82
|
+
:plugin_dir,
|
83
|
+
:upgrade,
|
84
|
+
)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
@@ -0,0 +1,101 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2016-2021 Copado NCS LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require "kitchen/terraform/command_flag/backend_config"
|
18
|
+
require "kitchen/terraform/command_flag/color"
|
19
|
+
require "kitchen/terraform/command_flag/lock_timeout"
|
20
|
+
require "kitchen/terraform/command_flag/plugin_dir"
|
21
|
+
require "kitchen/terraform/command_flag/upgrade"
|
22
|
+
|
23
|
+
module Kitchen
|
24
|
+
module Terraform
|
25
|
+
module Command
|
26
|
+
module Init
|
27
|
+
# The working directory is initialized by running a command like the following example:
|
28
|
+
# terraform init \
|
29
|
+
# -backend=true \
|
30
|
+
# [-backend-config=<backend_configurations[0]> ...] \
|
31
|
+
# -force-copy \
|
32
|
+
# -get=true \
|
33
|
+
# -get-plugins=true \
|
34
|
+
# -input=false \
|
35
|
+
# -lock=<lock> \
|
36
|
+
# -lock-timeout=<lock_timeout>s \
|
37
|
+
# [-no-color] \
|
38
|
+
# [-plugin-dir=<plugin_directory>] \
|
39
|
+
# [-upgrade=true] \
|
40
|
+
# -verify-plugins=true \
|
41
|
+
# <root_module_directory>
|
42
|
+
class PreZeroFifteenZero
|
43
|
+
# #initialize prepares a new instance of the class.
|
44
|
+
#
|
45
|
+
# @param config [Hash] the configuration of the driver.
|
46
|
+
# @option config [Hash{String=>String}] :backend_configurations Terraform backend configuration arguments to
|
47
|
+
# complete a partial backend configuration.
|
48
|
+
# @option config [Boolean] :color a toggle of colored output from the Terraform client.
|
49
|
+
# @option config [Boolean] :lock a toggle of locking for the Terraform state file.
|
50
|
+
# @option config [Integer] :lock_timeout the number of seconds that the Terraform client will wait for a lock
|
51
|
+
# on the state to be obtained during operations.
|
52
|
+
# @option config [String] :plugin_directory the pathname of the directory which contains
|
53
|
+
# customized Terraform provider plugins to install in place of the official Terraform provider plugins.
|
54
|
+
# @option config [Boolean] :upgrade_during_init a toggle for upgrading modules and plugins.
|
55
|
+
# @return [Kitchen::Terraform::Command::Init::PreZeroFifteenZero]
|
56
|
+
def initialize(config:)
|
57
|
+
self.backend_config = ::Kitchen::Terraform::CommandFlag::BackendConfig.new arguments: config.fetch(
|
58
|
+
:backend_configurations
|
59
|
+
)
|
60
|
+
self.color = ::Kitchen::Terraform::CommandFlag::Color.new enabled: config.fetch(:color)
|
61
|
+
self.lock = config.fetch :lock
|
62
|
+
self.lock_timeout = ::Kitchen::Terraform::CommandFlag::LockTimeout.new duration: config.fetch(:lock_timeout)
|
63
|
+
self.plugin_dir = ::Kitchen::Terraform::CommandFlag::PluginDir.new pathname: config.fetch(
|
64
|
+
:plugin_directory
|
65
|
+
)
|
66
|
+
self.upgrade = ::Kitchen::Terraform::CommandFlag::Upgrade.new enabled: config.fetch(:upgrade_during_init)
|
67
|
+
end
|
68
|
+
|
69
|
+
# @return [String] the command with flags.
|
70
|
+
def to_s
|
71
|
+
"init " \
|
72
|
+
"-backend=true " \
|
73
|
+
"#{backend_config} " \
|
74
|
+
"-force-copy=true " \
|
75
|
+
"-get=true " \
|
76
|
+
"-get-plugins=true " \
|
77
|
+
"-input=false " \
|
78
|
+
"-lock=#{lock} " \
|
79
|
+
"#{lock_timeout} " \
|
80
|
+
"#{color} " \
|
81
|
+
"#{plugin_dir} " \
|
82
|
+
"#{upgrade} " \
|
83
|
+
"-verify-plugins=true"
|
84
|
+
end
|
85
|
+
|
86
|
+
private
|
87
|
+
|
88
|
+
attr_accessor(
|
89
|
+
:backend_config,
|
90
|
+
:color,
|
91
|
+
:lock,
|
92
|
+
:lock_timeout,
|
93
|
+
:options,
|
94
|
+
:plugin_dir,
|
95
|
+
:upgrade,
|
96
|
+
)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|