terraspace 0.7.1 → 0.7.2
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/README.md +8 -4
- data/lib/terraspace/terraform/runner.rb +7 -7
- 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: 34fd5fc528a54f97026d5daf99d11ecee90882e915a94c92e50039c69a418e4c
|
4
|
+
data.tar.gz: '01418d9a47515ebd4b0ad15b10af00ca07492ea549d70a8555d82078c7cc40ea'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbecb189c794586eb959cddbd052c018dd1271100c414dc787b4ba0329845662dfa160820be321894c37dbec74275a546fc3d85ed14ab1de2f4b502de799f027
|
7
|
+
data.tar.gz: 5fa0edad8d472981ee79a067100a208249e30f882ab7ec70e0c9858ba9c80931113e2e11a9f1393836dd9d1f8f20c8ab123bc9bf8b47fa2f1628cb2fad4e93ff
|
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
|
+
## [0.7.2] - 2022-01-05
|
7
|
+
- [#187](https://github.com/boltops-tools/terraspace/pull/187) put thor cli options at the end
|
8
|
+
|
6
9
|
## [0.7.1] - 2022-01-04
|
7
10
|
- [#185](https://github.com/boltops-tools/terraspace/pull/185) pass value through untouch when expand method not defined
|
8
11
|
|
data/README.md
CHANGED
@@ -8,18 +8,22 @@
|
|
8
8
|
|
9
9
|
[![BoltOps Badge](https://img.boltops.com/boltops/badges/boltops-badge.png)](https://www.boltops.com)
|
10
10
|
|
11
|
-
|
11
|
+
[![BoltOps Learn Badge](https://img.boltops.com/boltops-learn/boltops-learn.png)](https://learn.boltops.com)
|
12
|
+
|
12
13
|
|
13
|
-
|
14
|
+
The Terraform Framework.
|
14
15
|
|
15
16
|
Official Docs Site: [terraspace.cloud](https://terraspace.cloud)
|
16
17
|
|
17
|
-
|
18
|
+
## Support the Project
|
18
19
|
|
19
|
-
|
20
|
+
* Please **watch/star** this repo to help grow and support the project.
|
21
|
+
* Consider subscribing to [BoltOps Learn](https://learn.boltops.com/). You'll get access to many training videos. Subscribing helps support the project.
|
20
22
|
|
21
23
|
## Quick Start
|
22
24
|
|
25
|
+
[![Watch the video](https://img.boltops.com/boltops/tools/terraspace/youtube/terraspace-quick-start.png)](https://learn.boltops.com/courses/terraspace-fundamentals/lessons/terraspace-quick-start)
|
26
|
+
|
23
27
|
Here are commands to get started:
|
24
28
|
|
25
29
|
terraspace new project infra --plugin aws --examples
|
@@ -18,7 +18,7 @@ module Terraspace::Terraform
|
|
18
18
|
|
19
19
|
# default at end in case of redirection. IE: terraform output > /path
|
20
20
|
def args
|
21
|
-
args = custom.args +
|
21
|
+
args = custom.args + pass.args + thor.args
|
22
22
|
args.uniq
|
23
23
|
end
|
24
24
|
|
@@ -28,18 +28,18 @@ module Terraspace::Terraform
|
|
28
28
|
end
|
29
29
|
memoize :custom
|
30
30
|
|
31
|
-
# From Thor defined/managed cli @options
|
32
|
-
def thor
|
33
|
-
Args::Thor.new(@mod, @name, @options)
|
34
|
-
end
|
35
|
-
memoize :thor
|
36
|
-
|
37
31
|
# From Thor passthrough cli @options[:args]
|
38
32
|
def pass
|
39
33
|
Args::Pass.new(@mod, @name, @options)
|
40
34
|
end
|
41
35
|
memoize :pass
|
42
36
|
|
37
|
+
# From Thor defined/managed cli @options
|
38
|
+
def thor
|
39
|
+
Args::Thor.new(@mod, @name, @options)
|
40
|
+
end
|
41
|
+
memoize :thor
|
42
|
+
|
43
43
|
def terraform(name, *args)
|
44
44
|
current_dir_message # only show once
|
45
45
|
|
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.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tung Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|