ruby-terraform 1.8.0.pre.4 → 1.8.0.pre.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/Gemfile.lock +1 -1
- data/lib/ruby_terraform/commands/workspace_select.rb +1 -0
- data/lib/ruby_terraform/version.rb +1 -1
- data/lib/ruby_terraform.rb +2 -0
- 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: 04e952816455b40a1ff0ade3e46003faffa12b7a0fc974bb1a4bbb7d1059e6af
|
|
4
|
+
data.tar.gz: 13ce73af719b883a74d2aba22d0f8c380aee3c5ebb092c85613a7ba7710a0cd5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dec912fd8f4caefffab79439908e549463b825159655d5e7d84c4bca9b8c1adc67cca22f3271b6604de1e7297f038704fc69e161e41388aabd6ea1eb3e6293cd
|
|
7
|
+
data.tar.gz: 5c7f469d5d9df91a3c45db0d470d8d4a1c6526fff683f50c20908744948ba6c63f23d4f9284c8aa8b888b043e54c0aea9c5f10b599c1a002c1d4a1fe82bc17fa
|
data/Gemfile.lock
CHANGED
|
@@ -16,6 +16,7 @@ module RubyTerraform
|
|
|
16
16
|
# * +:directory+: the path to a directory containing terraform configuration
|
|
17
17
|
# (deprecated in terraform 0.14, removed in terraform 0.15, use +:chdir+
|
|
18
18
|
# instead).
|
|
19
|
+
# * +:or_create+: whether to create the workspace if it does not exist.
|
|
19
20
|
# * +:chdir+: the path of a working directory to switch to before executing
|
|
20
21
|
# the given subcommand.
|
|
21
22
|
#
|
data/lib/ruby_terraform.rb
CHANGED
|
@@ -1521,6 +1521,8 @@ module RubyTerraform
|
|
|
1521
1521
|
# @option parameters [String] :directory The path to a directory containing
|
|
1522
1522
|
# terraform configuration (deprecated in terraform 0.14, removed in
|
|
1523
1523
|
# terraform 0.15, use +:chdir+ instead).
|
|
1524
|
+
# @option parameters [Boolean] :or_create Whether to create the workspace if
|
|
1525
|
+
# it does not exist.
|
|
1524
1526
|
# @option parameters [String] :chdir The path of a working directory to
|
|
1525
1527
|
# switch to before executing the given subcommand.
|
|
1526
1528
|
# @param [Hash<String, Object>] invocation_options Additional options
|