terradactyl-terraform 1.4.0 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/terradactyl/terraform/commands/destroy.rb +6 -0
- data/lib/terradactyl/terraform/commands/init.rb +6 -0
- data/lib/terradactyl/terraform/planfile.rb +10 -0
- data/lib/terradactyl/terraform/version.rb +1 -1
- data/lib/terradactyl/terraform/version_manager/package.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: 0c526499fa533c4aa0c3f59712b429738492d4a27b036e45bcf9bb6bc78792c3
|
4
|
+
data.tar.gz: 25ea68a837280ed92a84a0935d9bc102061995a4e9bea59e1d4610a2b71dbfc4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f161bb77e345c35c3a886e8becf6f668e1f0ce15cfa28b1dd726cd8a95ff67158e69b73d950882f7ed82d26d5f5831d6d081bfd48dce0fedda68a09dab0d60e
|
7
|
+
data.tar.gz: 87513d7a35042ab1138ba44773c075a3a46b00b81e0b842bef2ae8ae336b0949fea5ec1f8248c72b8f352b4b90875754fffe35b74b032f11764c427a8acf494f
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,26 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 1.5.0 (2023-06-12)
|
4
|
+
|
5
|
+
NEW FEATURES:
|
6
|
+
|
7
|
+
* add support for Terraform version `~> 1.5.0`
|
8
|
+
* exclude `timestamp` from PlanFileParser to maintain consistent checksums
|
9
|
+
* update init, planfile, and destroy commands (add Rev1_05)
|
10
|
+
* add Rev1_05 rspecs
|
11
|
+
|
12
|
+
## 1.4.1 (2023-03-21)
|
13
|
+
|
14
|
+
BUG FIX:
|
15
|
+
|
16
|
+
* support `aarch64` architectures
|
17
|
+
|
3
18
|
## 1.4.0 (2023-03-13)
|
4
19
|
|
5
20
|
NEW FEATURES:
|
6
21
|
|
7
22
|
* add support for Terraform version `~> 1.4.0`
|
23
|
+
* set `TF_PLUGIN_CACHE_MAY_BREAK_DEPENDENCY_LOCK_FILE` to true
|
8
24
|
* update init, planfile, and destroy commands (add Rev1_04)
|
9
25
|
* add Rev1_04 rspecs
|
10
26
|
|
@@ -58,7 +58,12 @@ module Terradactyl
|
|
58
58
|
#
|
59
59
|
# brian.warsing@visioncritical.com (2020-06-18)
|
60
60
|
|
61
|
+
# The same must be done to the `timestamp` node introduced in TF 1.5
|
62
|
+
#
|
63
|
+
# lisa.li@alida.com (2023-06-12)
|
64
|
+
|
61
65
|
parsed.reject { |k| k == 'prior_state' }.to_json
|
66
|
+
parsed.reject { |k| k == 'timestamp' }.to_json
|
62
67
|
ensure
|
63
68
|
popd
|
64
69
|
end
|
@@ -123,6 +128,11 @@ module Terradactyl
|
|
123
128
|
end
|
124
129
|
end
|
125
130
|
|
131
|
+
module Rev1_05
|
132
|
+
class PlanFileParser < Rev012::PlanFileParser
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
126
136
|
module Rev011
|
127
137
|
class PlanFileParser < Rev012::PlanFileParser
|
128
138
|
def checksum
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: terradactyl-terraform
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Warsing
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|