terraspace 2.2.9 → 2.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/terraspace/cli/setup.rb +6 -0
- data/lib/terraspace/cli.rb +7 -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: 868708d6fa642b4d3d594202aeadff28af0e2ec106628a0e7853f83b0ad27824
|
|
4
|
+
data.tar.gz: b03c9dff474ed98d929a54ef85598df335870c1e668aa39004ebada3e7115cfc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66d7030cc8995f2524f651bc5d0a8e3a3a42cbbde5c14e869f5f49b7a86dfb157c2ba7f6d81f3515f1a151252f62edc9f206b66303b3d30eb0d76d683dd4ee28
|
|
7
|
+
data.tar.gz: '0910ebbc15e648c59682af6b014e73a3e54f54daac34c5975bebf4878f3751f43f9f3085b04e9aa6810307f69b290fe14d970b69295f4b54452795ffd43db7f4'
|
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
|
+
## [2.2.10] - 2023-08-23
|
|
7
|
+
- [#324](https://github.com/boltops-tools/terraspace/pull/324) terraspace check
|
|
8
|
+
|
|
6
9
|
## [2.2.9] - 2023-08-23
|
|
7
10
|
- [#323](https://github.com/boltops-tools/terraspace/pull/323) Restrict terraform version due to terraform BSL license change
|
|
8
11
|
- send terraform version to all terraspace cloud requests
|
data/lib/terraspace/cli/setup.rb
CHANGED
|
@@ -3,6 +3,12 @@ class Terraspace::CLI
|
|
|
3
3
|
desc "check", "Check setup is ok"
|
|
4
4
|
long_desc Help.text("setup/check")
|
|
5
5
|
def check
|
|
6
|
+
puts <<~EOL
|
|
7
|
+
DEPRECATED: The terraspace setup check command is deprecated. Instead use:
|
|
8
|
+
|
|
9
|
+
terraspace check
|
|
10
|
+
|
|
11
|
+
EOL
|
|
6
12
|
Terraspace::Check.new(options).run
|
|
7
13
|
end
|
|
8
14
|
end
|
data/lib/terraspace/cli.rb
CHANGED
|
@@ -66,13 +66,19 @@ module Terraspace
|
|
|
66
66
|
Bundle.new(options.merge(args: args)).run
|
|
67
67
|
end
|
|
68
68
|
|
|
69
|
+
desc "check", "Check setup.", hide: true
|
|
70
|
+
long_desc Help.text(:check_setup)
|
|
71
|
+
def check
|
|
72
|
+
Check.new(options).run
|
|
73
|
+
end
|
|
74
|
+
|
|
69
75
|
desc "check_setup", "Check setup.", hide: true
|
|
70
76
|
long_desc Help.text(:check_setup)
|
|
71
77
|
def check_setup
|
|
72
78
|
puts <<~EOL
|
|
73
79
|
DEPRECATED: The terraspace check_setup command is deprecated. Instead use:
|
|
74
80
|
|
|
75
|
-
terraspace
|
|
81
|
+
terraspace check
|
|
76
82
|
|
|
77
83
|
EOL
|
|
78
84
|
Check.new(options).run
|
data/lib/terraspace/version.rb
CHANGED