ruby-terraform 0.9.0 → 0.10.0
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 +2 -2
- data/README.md +2 -0
- data/lib/ruby_terraform/commands/init.rb +2 -0
- data/lib/ruby_terraform/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 45d6e6054b0fc6c230e5fbe0d2fd8eb83fdfdb3a
|
|
4
|
+
data.tar.gz: 7b9a2c1ebc783c7978e0bcd19bc0ec922c1f2a78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f509d8f32ff9c8a226872f453a25b3c4a9d59afe8de5adda32f685df5a671d129c9a00721abd75aefd37d25cfee5efdbeaba2637ac172ba391a78a1237432d51
|
|
7
|
+
data.tar.gz: ea86fa881219875894a94361d8f6ca92d33c0032202217ac4b320ebf1ecee22eebe9f7b28de7c9600ca4c34449b9d7011b9984945dc77e1b0e60e8ede692f6fb
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -85,6 +85,8 @@ The init command supports the following options passed as keyword arguments:
|
|
|
85
85
|
* `backend_config`: a map of backend specific configuration parameters.
|
|
86
86
|
* `no_color`: whether or not the output from the command should be in color;
|
|
87
87
|
defaults to `false`.
|
|
88
|
+
* `plugin_dir`: directory containing plugin binaries. Overrides all default;
|
|
89
|
+
search paths for plugins and prevents the automatic installation of plugins.
|
|
88
90
|
|
|
89
91
|
|
|
90
92
|
### RubyTerraform::Commands::Get
|
|
@@ -11,6 +11,7 @@ module RubyTerraform
|
|
|
11
11
|
backend_config = opts[:backend_config] || {}
|
|
12
12
|
source = opts[:from_module]
|
|
13
13
|
path = opts[:path]
|
|
14
|
+
plugin_dir = opts[:plugin_dir]
|
|
14
15
|
|
|
15
16
|
builder = builder
|
|
16
17
|
.with_subcommand('init') do |sub|
|
|
@@ -18,6 +19,7 @@ module RubyTerraform
|
|
|
18
19
|
sub = sub.with_option('-get', get) unless get.nil?
|
|
19
20
|
sub = sub.with_option('-from-module', source) if source
|
|
20
21
|
sub = sub.with_flag('-no-color') if no_color
|
|
22
|
+
sub = sub.with_option('-plugin-dir', plugin_dir) unless plugin_dir.nil?
|
|
21
23
|
backend_config.each do |key, value|
|
|
22
24
|
sub = sub.with_option(
|
|
23
25
|
'-backend-config',
|