terraform_landscape 0.1.14 → 0.1.15

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
  SHA1:
3
- metadata.gz: d4d5a5fe1eac19818e952cc939e1cd36a3e41de8
4
- data.tar.gz: cc6706502ec44351883199c832719bcd9e2e246c
3
+ metadata.gz: 5eb1394da2bcf02e16e0536b664e2e7b430c4b8e
4
+ data.tar.gz: 9a6c6489c1f1da6fb3824282d60fe10c5a09ab30
5
5
  SHA512:
6
- metadata.gz: 14f430b0c635aa6fd60913374ad122944ab51e086309af567ae0e335802a18d2fcf44aa03cff245371ce333dec34fadb554f4075105c8ea44c771b542f2822ba
7
- data.tar.gz: a80807d2c1c35b7922f3f15ced59570058d957434d3709f3b008fe1e15817ff00cb91634fc0b78c157aa3e922290558ebd08a119347b9eb905249fadd142a37f
6
+ metadata.gz: 62cbadc2c52b973b513cfebad4f535e027d5715bcb834c78accf27d1a55626ac44a5d0d2b96092cdb66453272e6142c4d205d0a2b74d6fe30c06c7a7e75d5038
7
+ data.tar.gz: 8748da16145151d9852d87469a5fb3f3370636ec695952b05b71c483f6103bc5a0e7fe938ae277fe4c5d2af98263c3ddb8af0a037708969c20d81fa7a46cf200
@@ -103,11 +103,12 @@ grammar TerraformPlan
103
103
  val = val[0...match.begin(0)]
104
104
  end
105
105
 
106
- # With Terraform >= 0.10.4, the <computed> field is now without quotes,
107
- # which will cause problem with how downstream we process the output.
108
- # Convert it to have quotes and handle < 0.10.4 as well.
109
- val = val.gsub(%r{=> <computed>$}, '=> "<computed>"')
110
- .gsub(%r{^<computed>}, '"<computed>"')
106
+ # With Terraform >= 0.10.4, the <computed> and <sensitive> fields are
107
+ # now without quotes, which will cause problem with how downstream we
108
+ # process the output. Convert it to have quotes and handle < 0.10.4 as
109
+ # well.
110
+ val = val.gsub(%r{=> <(\w+)>$}, '=> "<\1>"')
111
+ .gsub(%r{^<(\w+)>}, '"<\1>"')
111
112
 
112
113
  { value: val, reason: reason }
113
114
  end
@@ -2,5 +2,5 @@
2
2
 
3
3
  # Defines the gem version.
4
4
  module TerraformLandscape
5
- VERSION = '0.1.14'.freeze
5
+ VERSION = '0.1.15'.freeze
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terraform_landscape
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.14
4
+ version: 0.1.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Coinbase
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-10-05 00:00:00.000000000 Z
12
+ date: 2017-10-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: colorize
@@ -106,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
106
  version: '0'
107
107
  requirements: []
108
108
  rubyforge_project:
109
- rubygems_version: 2.6.13
109
+ rubygems_version: 2.6.14
110
110
  signing_key:
111
111
  specification_version: 4
112
112
  summary: Pretty-print Terraform plan output