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
@@ -0,0 +1,52 @@
|
|
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/init/post_zero_fifteen_zero"
|
18
|
+
require "kitchen/terraform/command/init/pre_zero_fifteen_zero"
|
19
|
+
require "rubygems"
|
20
|
+
|
21
|
+
module Kitchen
|
22
|
+
module Terraform
|
23
|
+
module Command
|
24
|
+
# InitFactory is the class of objects which build Init objects.
|
25
|
+
class InitFactory
|
26
|
+
# #build creates a new instance of an Init object.
|
27
|
+
#
|
28
|
+
# @param config [Hash] the configuration of the driver.
|
29
|
+
# @return [Kitchen::Terraform::Command::Init::PreZeroFifteenZero,
|
30
|
+
# Kitchen::Terraform::Command::Init::PostZeroFifteenZero]
|
31
|
+
def build(config:)
|
32
|
+
return ::Kitchen::Terraform::Command::Init::PreZeroFifteenZero.new config: config if requirement.satisfied_by? version
|
33
|
+
|
34
|
+
::Kitchen::Terraform::Command::Init::PostZeroFifteenZero.new config: config
|
35
|
+
end
|
36
|
+
|
37
|
+
# #initialize prepares a new instance of the class
|
38
|
+
#
|
39
|
+
# @param version [Gem::Version] a client version.
|
40
|
+
# @return [Kitchen::Terraform::Command::InitFactory]
|
41
|
+
def initialize(version:)
|
42
|
+
self.requirement = ::Gem::Requirement.new "< 0.15.0"
|
43
|
+
self.version = version
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
attr_accessor :requirement, :version
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -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,49 +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/color"
|
18
|
-
require "kitchen/terraform/command_flag/var_file"
|
19
|
-
require "kitchen/terraform/command_flag/var"
|
20
|
-
require "shellwords"
|
21
|
-
|
22
17
|
module Kitchen
|
23
18
|
module Terraform
|
24
19
|
module Command
|
25
|
-
#
|
26
|
-
|
27
|
-
# [-no-color] \
|
28
|
-
# [-var=<variables.first>...] \
|
29
|
-
# [-var-file=<variable_files.first>...] \
|
30
|
-
# <directory>
|
31
|
-
class Validate
|
32
|
-
# #initialize prepares a new instance of the class.
|
33
|
-
#
|
34
|
-
# @param config [Hash] the configuration of the driver.
|
35
|
-
# @option config [Boolean] :color a toggle of colored output from the Terraform client.
|
36
|
-
# @option config [Array<String>] :variable_files a list of pathnames of Terraform variable files to evaluate.
|
37
|
-
# @option config [Hash{String=>String}] :variables a mapping of Terraform variables to evaluate.
|
38
|
-
# @return [Kitchen::Terraform::Command::Validate]
|
39
|
-
def initialize(config:)
|
40
|
-
self.color = ::Kitchen::Terraform::CommandFlag::Color.new enabled: config.fetch(:color)
|
41
|
-
self.var_file = ::Kitchen::Terraform::CommandFlag::VarFile.new pathnames: config.fetch(:variable_files)
|
42
|
-
self.var = ::Kitchen::Terraform::CommandFlag::Var.new arguments: config.fetch(:variables)
|
43
|
-
end
|
44
|
-
|
45
|
-
# @return [String] the command with flags.
|
46
|
-
def to_s
|
47
|
-
"validate " \
|
48
|
-
"#{color} " \
|
49
|
-
"#{var} " \
|
50
|
-
"#{var_file}"
|
51
|
-
end
|
52
|
-
|
53
|
-
private
|
54
|
-
|
55
|
-
attr_accessor(
|
56
|
-
:color,
|
57
|
-
:var_file,
|
58
|
-
:var,
|
59
|
-
)
|
20
|
+
# Validate is the namespace for Terraform Validate commands.
|
21
|
+
module Validate
|
60
22
|
end
|
61
23
|
end
|
62
24
|
end
|
@@ -0,0 +1,51 @@
|
|
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/color"
|
18
|
+
require "shellwords"
|
19
|
+
|
20
|
+
module Kitchen
|
21
|
+
module Terraform
|
22
|
+
module Command
|
23
|
+
module Validate
|
24
|
+
# The root module is validated by running a command like the following example:
|
25
|
+
# terraform validate \
|
26
|
+
# [-no-color] \
|
27
|
+
# <directory>
|
28
|
+
class PostZeroFifteenZero
|
29
|
+
# #initialize prepares a new instance of the class.
|
30
|
+
#
|
31
|
+
# @param config [Hash] the configuration of the driver.
|
32
|
+
# @option config [Boolean] :color a toggle of colored output from the Terraform client.
|
33
|
+
# @return [Kitchen::Terraform::Command::Validate]
|
34
|
+
def initialize(config:)
|
35
|
+
self.color = ::Kitchen::Terraform::CommandFlag::Color.new enabled: config.fetch(:color)
|
36
|
+
end
|
37
|
+
|
38
|
+
# @return [String] the command with flags.
|
39
|
+
def to_s
|
40
|
+
"validate " \
|
41
|
+
"#{color}"
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
attr_accessor :color
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,65 @@
|
|
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/color"
|
18
|
+
require "kitchen/terraform/command_flag/var_file"
|
19
|
+
require "kitchen/terraform/command_flag/var"
|
20
|
+
require "shellwords"
|
21
|
+
|
22
|
+
module Kitchen
|
23
|
+
module Terraform
|
24
|
+
module Command
|
25
|
+
module Validate
|
26
|
+
# The root module is validated by running a command like the following example:
|
27
|
+
# terraform validate \
|
28
|
+
# [-no-color] \
|
29
|
+
# [-var=<variables.first>...] \
|
30
|
+
# [-var-file=<variable_files.first>...] \
|
31
|
+
# <directory>
|
32
|
+
class PreZeroFifteenZero
|
33
|
+
# #initialize prepares a new instance of the class.
|
34
|
+
#
|
35
|
+
# @param config [Hash] the configuration of the driver.
|
36
|
+
# @option config [Boolean] :color a toggle of colored output from the Terraform client.
|
37
|
+
# @option config [Array<String>] :variable_files a list of pathnames of Terraform variable files to evaluate.
|
38
|
+
# @option config [Hash{String=>String}] :variables a mapping of Terraform variables to evaluate.
|
39
|
+
# @return [Kitchen::Terraform::Command::Validate]
|
40
|
+
def initialize(config:)
|
41
|
+
self.color = ::Kitchen::Terraform::CommandFlag::Color.new enabled: config.fetch(:color)
|
42
|
+
self.var_file = ::Kitchen::Terraform::CommandFlag::VarFile.new pathnames: config.fetch(:variable_files)
|
43
|
+
self.var = ::Kitchen::Terraform::CommandFlag::Var.new arguments: config.fetch(:variables)
|
44
|
+
end
|
45
|
+
|
46
|
+
# @return [String] the command with flags.
|
47
|
+
def to_s
|
48
|
+
"validate " \
|
49
|
+
"#{color} " \
|
50
|
+
"#{var} " \
|
51
|
+
"#{var_file}"
|
52
|
+
end
|
53
|
+
|
54
|
+
private
|
55
|
+
|
56
|
+
attr_accessor(
|
57
|
+
:color,
|
58
|
+
:var_file,
|
59
|
+
:var,
|
60
|
+
)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,54 @@
|
|
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/validate/post_zero_fifteen_zero"
|
18
|
+
require "kitchen/terraform/command/validate/pre_zero_fifteen_zero"
|
19
|
+
require "rubygems"
|
20
|
+
|
21
|
+
module Kitchen
|
22
|
+
module Terraform
|
23
|
+
module Command
|
24
|
+
# ValidateFactory is the class of objects which build Validate objects.
|
25
|
+
class ValidateFactory
|
26
|
+
# #build creates a new instance of an Validate object.
|
27
|
+
#
|
28
|
+
# @param config [Hash] the configuration of the driver.
|
29
|
+
# @return [Kitchen::Terraform::Command::Validate::PreZeroFifteenZero,
|
30
|
+
# Kitchen::Terraform::Command::Validate::PostZeroFifteenZero]
|
31
|
+
def build(config:)
|
32
|
+
if requirement.satisfied_by? version
|
33
|
+
return ::Kitchen::Terraform::Command::Validate::PreZeroFifteenZero.new config: config
|
34
|
+
end
|
35
|
+
|
36
|
+
::Kitchen::Terraform::Command::Validate::PostZeroFifteenZero.new config: config
|
37
|
+
end
|
38
|
+
|
39
|
+
# #initialize prepares a new instance of the class
|
40
|
+
#
|
41
|
+
# @param version [Gem::Version] a client version.
|
42
|
+
# @return [Kitchen::Terraform::Command::ValidateFactory]
|
43
|
+
def initialize(version:)
|
44
|
+
self.requirement = ::Gem::Requirement.new "< 0.15.0"
|
45
|
+
self.version = version
|
46
|
+
end
|
47
|
+
|
48
|
+
private
|
49
|
+
|
50
|
+
attr_accessor :requirement, :version
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -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.
|
@@ -40,14 +40,12 @@ module Kitchen
|
|
40
40
|
# @yieldparam standard_output [String] the standard output of the command.
|
41
41
|
# @raise [Kitchen::TransientFailure] if running the command results in failure.
|
42
42
|
# @return [self]
|
43
|
-
def run(command:, options
|
43
|
+
def run(command:, options:, &block)
|
44
44
|
::Kitchen::Terraform::ShellOut.new(
|
45
45
|
command: "#{client} #{command}",
|
46
46
|
logger: logger,
|
47
47
|
options: options,
|
48
|
-
).run
|
49
|
-
yield standard_output: standard_output
|
50
|
-
end
|
48
|
+
).run(&block)
|
51
49
|
|
52
50
|
self
|
53
51
|
end
|
@@ -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.
|
@@ -30,7 +30,7 @@ module Kitchen
|
|
30
30
|
# @return [String] the upgrade flag.
|
31
31
|
def to_s
|
32
32
|
if enabled
|
33
|
-
"-upgrade"
|
33
|
+
"-upgrade=true"
|
34
34
|
else
|
35
35
|
""
|
36
36
|
end
|