terraspace 1.1.5 → 1.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/terraspace/compiler/strategy/tfvar/layer.rb +3 -1
- data/lib/terraspace/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: 1645fa9d7679907d214d87b276d1282f0ae0fba29f1a2fff4019c4324a61b9c4
|
4
|
+
data.tar.gz: 26e2f27c70bf1872fce821778a80d20e3923b1dbf8e56013c88ee3d0c66ff002
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a512a5c8c7d9b30959a967023be912979c2f666d510f95094cf1c531c00b3d52c11bca88528e72e62842484fdfa82d22c62edffe86d11a6a8ec11126117baba
|
7
|
+
data.tar.gz: 9f88a7337013171c4944f4c8b86067ba1df3a9e009cedb773fac0199cd35a7828c535439848abc9addec41cf918b7df0152c2d0360255ec8381a7df9ff87c000
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
5
5
|
|
6
|
+
## [1.1.6] - 2022-02-21
|
7
|
+
- [#213](https://github.com/boltops-tools/terraspace/pull/213) ability to show layers for debugging
|
8
|
+
|
6
9
|
## [1.1.5] - 2022-02-21
|
7
10
|
- [#212](https://github.com/boltops-tools/terraspace/pull/212) ability to show layers for debugging
|
8
11
|
- show layers for debugging with logger level debug and TS_SHOW_ALL_LAYERS=1
|
@@ -138,7 +138,9 @@ class Terraspace::Compiler::Strategy::Tfvar
|
|
138
138
|
return if @@shown_layers[@mod.name]
|
139
139
|
logger.debug "Layers for #{@mod.name}:"
|
140
140
|
paths.each do |path|
|
141
|
-
|
141
|
+
next unless path.include?('.tfvars')
|
142
|
+
show = File.exist?(path) || ENV['TS_SHOW_ALL_LAYERS']
|
143
|
+
logger.debug " #{pretty_path(path)}" if show
|
142
144
|
end
|
143
145
|
logger.debug ""
|
144
146
|
@@shown_layers[@mod.name] = true
|
data/lib/terraspace/version.rb
CHANGED