ruby-terraform 1.6.0.pre.3 → 1.6.0.pre.4
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/Gemfile.lock +1 -1
- data/lib/ruby_terraform/commands/base.rb +4 -0
- data/lib/ruby_terraform/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60699ba291eef1e9640cc60eb4bef3ed3d19ac4ef859a81de74bc9e033406ae1
|
4
|
+
data.tar.gz: 642b930d19c2d345c0ebba747597b390da429289267a8590e69e66106e61f80b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '06485a26e0869ef712a86a298d18766e791e85d2ea62ed58f5e55a37ab1010ac53ad42cbbda8e9a64fc066cad6cbb9cd2ee2764dee42bafeea5aa24252c68331'
|
7
|
+
data.tar.gz: 5c0e88105d41f49586afd63b1c306991eaa7735563c8e292182bfb05230c9b29558be711532945ee8de13a6fdce26e80dc1da551871bb421f3f331b128883dc0
|
data/Gemfile.lock
CHANGED
@@ -27,6 +27,10 @@ module RubyTerraform
|
|
27
27
|
# @param [Hash<String, Object>] parameters The parameters used to
|
28
28
|
# invoke the command. See subclass documentation for details of
|
29
29
|
# supported options.
|
30
|
+
# @param [Hash<String, Object>] invocation_options Additional options
|
31
|
+
# controlling the invocation of the command.
|
32
|
+
# @option invocation_options [Hash<String, String>] :environment A map
|
33
|
+
# of environment variables to expose at command invocation time.
|
30
34
|
def execute(parameters = {}, invocation_options = {})
|
31
35
|
do_before(parameters)
|
32
36
|
build_and_execute_command(parameters, invocation_options)
|