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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 91fe12476c2039a757ceb34e964609b8b5d0d922b08818f122088b5cd3989364
4
- data.tar.gz: 01c7ec1d07c2a6be6da3d14e300c5dfb460a2b2595e511c4dc792e50530853f5
3
+ metadata.gz: 1645fa9d7679907d214d87b276d1282f0ae0fba29f1a2fff4019c4324a61b9c4
4
+ data.tar.gz: 26e2f27c70bf1872fce821778a80d20e3923b1dbf8e56013c88ee3d0c66ff002
5
5
  SHA512:
6
- metadata.gz: 0fadfaa474138a8ef5f5856eb4b4cf5c3c998ecc6787c4ebbbc1c960e35b7949cf1ae6dd0b42bc0c6a8eba5b60007e57bc402c35a5ccd115a0172d1cbce67cb5
7
- data.tar.gz: 26f8095beac1358e28c0eb516c7dafc5bf896a3076d7fb113e2bd0a97906b9ad3dfc7bd4816a7d844656fc7bf95e006f377b7b83407e4279bda614b2c4e35252
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
- logger.debug " #{pretty_path(path)}" if File.exist?(path) || ENV['TS_SHOW_ALL_LAYERS']
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
@@ -1,3 +1,3 @@
1
1
  module Terraspace
2
- VERSION = "1.1.5"
2
+ VERSION = "1.1.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terraspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.5
4
+ version: 1.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen