terraspace_ci_bitbucket 0.1.0 → 0.2.0
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/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/lib/template/.bitbucket/bin/install +5 -0
- data/lib/terraspace_ci_bitbucket/vars.rb +1 -0
- data/lib/terraspace_ci_bitbucket/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: 6c942eab1b6925d3b9372238ae560aa231a27b1bf95e65991a47b67790d0d4e3
|
|
4
|
+
data.tar.gz: d3297902a15ebdf823321a6c1b855c9d5c7c3c40f2b85f8dee0c2e7f6358224f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2db0eec6be1822568f8f8e4164be16fee4afee5e8e387b28b013d64056ded9787981d88569606d6e28da481eaa2c002421f1c1bf991584629894959b9e8d9edd
|
|
7
|
+
data.tar.gz: 7ca6894fb52d1e4181772ef8df45480ddcb6c693393cbc1622fabd28d1ed2b277f544dcd0e70052bfd6a8e9b0c9151c462ba6654f6b7efe001b0e904c1964d21
|
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 *tries* to adhere to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [0.2.0] - 2022-07-11
|
|
7
|
+
- [#1](https://github.com/boltops-tools/terraspace_ci_bitbucket/pull/1) install infracost
|
|
8
|
+
|
|
6
9
|
## [0.1.0] - 2022-06-09
|
|
7
10
|
|
|
8
11
|
- Initial release
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# terraspace_ci_bitbucket
|
|
2
2
|
|
|
3
|
-
[](http://badge.fury.io/rb/terraspace_ci_bitbucket)
|
|
4
4
|
|
|
5
5
|
[](https://www.boltops.com)
|
|
6
6
|
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
+
|
|
2
3
|
# install terraform
|
|
3
4
|
git clone https://github.com/tfutils/tfenv.git ~/.tfenv
|
|
4
5
|
export PATH="$HOME/.tfenv/bin:$PATH"
|
|
5
6
|
tfenv install latest
|
|
6
7
|
tfenv use latest
|
|
7
8
|
terraform --version
|
|
9
|
+
|
|
8
10
|
# install terraspace
|
|
9
11
|
bundle
|
|
10
12
|
bundle exec terraspace new shim
|
|
11
13
|
export PATH="/usr/local/bin:$PATH"
|
|
14
|
+
|
|
15
|
+
# install infracost
|
|
16
|
+
curl -fsSL https://raw.githubusercontent.com/infracost/infracost/master/scripts/install.sh | sh
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: terraspace_ci_bitbucket
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
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-
|
|
11
|
+
date: 2022-07-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|