nexoform 0.1.5 → 0.1.6
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/bin/nexoform +2 -1
- data/lib/nexoform/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: 04643dd072d64a6cb347851a349e7bdb5b5413760518a4aad5c6d8af10f8ac73
|
|
4
|
+
data.tar.gz: 1a13a0e8fbe1ab5e8f173a048b44ff4c70d87ff9a3bf4ade06d863c92570b5f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34ec6b673840cde4f21c706482c363885b6806fe93118b919e6448d5042f66cb8bdf1eb8e0d1177e15259de58a91a92774c3f9f016ea79bfec93ac9a8dfbcbbd
|
|
7
|
+
data.tar.gz: a6532e43c353b3434e9d543109f373a0ccf3ec89b8504dda1182f30b42f8cde1a2577cbe4255eb56a30c83e0fc6db669ae7d9e8204fa015c905bdda580f01f34
|
data/bin/nexoform
CHANGED
|
@@ -351,7 +351,8 @@ class NexoformBin < Thor
|
|
|
351
351
|
varfile = apply_with_plan_file?(options) ? '' : var_file_arg(options)
|
|
352
352
|
planfile = apply_with_plan_file?(options) ? options[:plan] : ''
|
|
353
353
|
yes = options[:assume_yes] ? "yes 'yes' | " : ''
|
|
354
|
-
puts "[DEBUG]: yes value: '#{yes}'" if options['debug']
|
|
354
|
+
puts "[DEBUG]: terraform_apply - yes value: '#{yes}'" if options['debug']
|
|
355
|
+
puts "[DEBUG]: terraform_apply - planfile value: '#{planfile}'" if options['debug']
|
|
355
356
|
"#{yes}terraform apply #{varfile} #{planfile}"
|
|
356
357
|
end
|
|
357
358
|
|
data/lib/nexoform/version.rb
CHANGED