terraspace 0.6.0 → 0.6.1
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 -2
- data/lib/terraspace/app.rb +1 -1
- data/lib/terraspace/plugin/expander/interface.rb +1 -1
- data/lib/terraspace/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16315ba36569198d82f525f079e1416e579a53262f36cc50a3ea0ded4128067e
|
4
|
+
data.tar.gz: 8c3546c371860f3e4f4a6326113fd5c93cd99f0e0c436f771ebe4dcab3a0e523
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64ef2db1ea751561446fcc8b6863ce13975a594d25dd9829e7d4c7eae9ba11288e899bca27cfb007465f96ac5c81077841300892e2d9fb920cc465425e05c8a2
|
7
|
+
data.tar.gz: fd1a9d8da45a996513e43fd139d0826bac58564938df4c2668c28e69a2dc2643cda33fb54d0c272a21e0f735f8d5a558a2af26ac993f9fdd2d8272ea6293f27c
|
data/CHANGELOG.md
CHANGED
@@ -3,11 +3,12 @@
|
|
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
|
+
## [0.6.1] - 2021-03-04
|
7
|
+
- [#89](https://github.com/boltops-tools/terraspace/pull/89) rename option to enable_names.expansion
|
8
|
+
|
6
9
|
## [0.6.0] - 2021-03-03
|
7
|
-
- Update README.md
|
8
10
|
- [#87](https://github.com/boltops-tools/terraspace/pull/87) rename cloud to tfc command and improvements
|
9
11
|
- [#88](https://github.com/boltops-tools/terraspace/pull/88) custom layering support
|
10
|
-
- Rename `terraspace cloud` to `terraspace tfc` and tfc improvements
|
11
12
|
- Improve stdout handling, so this works: `terraspace show demo --json | jq`
|
12
13
|
- `terraspace plan --output plan.save` writes to relative cache path.
|
13
14
|
- `terraspace up --plan plan.save` copies plan.save to cache path.
|
data/lib/terraspace/app.rb
CHANGED
@@ -40,7 +40,7 @@ module Terraspace
|
|
40
40
|
config.layering = ActiveSupport::OrderedOptions.new
|
41
41
|
config.layering.names = {}
|
42
42
|
config.layering.enable_names = ActiveSupport::OrderedOptions.new
|
43
|
-
config.layering.enable_names.
|
43
|
+
config.layering.enable_names.expansion = true
|
44
44
|
config.summary = ActiveSupport::OrderedOptions.new
|
45
45
|
config.summary.prune = false
|
46
46
|
config.terraform = ActiveSupport::OrderedOptions.new
|
@@ -70,7 +70,7 @@ module Terraspace::Plugin::Expander
|
|
70
70
|
def var_value(name)
|
71
71
|
name = name.sub(':','').downcase
|
72
72
|
value = send(name)
|
73
|
-
if name == "namespace" && Terraspace.config.layering.enable_names.
|
73
|
+
if name == "namespace" && Terraspace.config.layering.enable_names.expansion
|
74
74
|
value = friendly_name(value)
|
75
75
|
end
|
76
76
|
value
|
data/lib/terraspace/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: terraspace
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|