terradactyl-terraform 1.4.1 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build-and-release.yml +1 -1
- data/.github/workflows/build-status.yml +1 -1
- data/.github/workflows/validate-pullrequest.yml +1 -1
- data/CHANGELOG.md +16 -1
- data/lib/terradactyl/terraform/commands/destroy.rb +12 -0
- data/lib/terradactyl/terraform/commands/init.rb +12 -0
- data/lib/terradactyl/terraform/planfile.rb +15 -0
- data/lib/terradactyl/terraform/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: f3f4844407060e7647caa915712b105b653855de6e52ded9abe31ac85cc63738
|
4
|
+
data.tar.gz: 0e1243a66bfa0f29ebdf421d067bc0b91e546b5d5bcbc36e02f4d017fa4c4847
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fca088af17ce89d2881ead9ab4afbe6e54c1695faff8bb2f6129e9091280deb82cb46a8b94f921741a6d8281deb9eb707027d88dcfa5e2e5530b4fef51eb0871
|
7
|
+
data.tar.gz: e52dccefa5c063fa15fd8c01b4a9fc62ee2d44ab60b1a1b829fe542651f81dd2a0d5f8b23b45ca40c99a918ef44f0b16dffc3feb8862061efc66ef1268b41198
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 1.6.0 (2023-10-04)
|
4
|
+
* add support for Terraform version `~> 1.6.0`
|
5
|
+
* update init, planfile, and destroy commands (add Rev1_06)
|
6
|
+
* add Rev1_06 rspecs
|
7
|
+
|
8
|
+
## 1.5.0 (2023-06-12)
|
9
|
+
|
10
|
+
NEW FEATURES:
|
11
|
+
|
12
|
+
* add support for Terraform version `~> 1.5.0`
|
13
|
+
* exclude `timestamp` from PlanFileParser to maintain consistent checksums
|
14
|
+
* update init, planfile, and destroy commands (add Rev1_05)
|
15
|
+
* add Rev1_05 rspecs
|
16
|
+
|
3
17
|
## 1.4.1 (2023-03-21)
|
4
18
|
|
5
19
|
BUG FIX:
|
@@ -11,6 +25,7 @@ BUG FIX:
|
|
11
25
|
NEW FEATURES:
|
12
26
|
|
13
27
|
* add support for Terraform version `~> 1.4.0`
|
28
|
+
* set `TF_PLUGIN_CACHE_MAY_BREAK_DEPENDENCY_LOCK_FILE` to true
|
14
29
|
* update init, planfile, and destroy commands (add Rev1_04)
|
15
30
|
* add Rev1_04 rspecs
|
16
31
|
|
@@ -29,7 +44,7 @@ BUG FIX:
|
|
29
44
|
* differentiate between `arm` and `arm64` architectures
|
30
45
|
* fixes binary downloader on Apple silicon
|
31
46
|
|
32
|
-
MISCELLANEOUS:
|
47
|
+
MISCELLANEOUS:
|
33
48
|
|
34
49
|
* Add `.DS_Store` to `.gitignore`
|
35
50
|
|
@@ -80,6 +80,18 @@ module Terradactyl
|
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
|
+
module Rev1_05
|
84
|
+
module Destroy
|
85
|
+
include Terradactyl::Terraform::Rev015::Destroy
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
module Rev1_06
|
90
|
+
module Destroy
|
91
|
+
include Terradactyl::Terraform::Rev015::Destroy
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
83
95
|
module Commands
|
84
96
|
class Destroy < Base
|
85
97
|
end
|
@@ -77,6 +77,18 @@ module Terradactyl
|
|
77
77
|
end
|
78
78
|
end
|
79
79
|
|
80
|
+
module Rev1_05
|
81
|
+
module Init
|
82
|
+
include Terradactyl::Terraform::Rev015::Init
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
module Rev1_06
|
87
|
+
module Init
|
88
|
+
include Terradactyl::Terraform::Rev015::Init
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
80
92
|
module Commands
|
81
93
|
class Init < Base
|
82
94
|
end
|
@@ -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,16 @@ module Terradactyl
|
|
123
128
|
end
|
124
129
|
end
|
125
130
|
|
131
|
+
module Rev1_05
|
132
|
+
class PlanFileParser < Rev012::PlanFileParser
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
module Rev1_06
|
137
|
+
class PlanFileParser < Rev012::PlanFileParser
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
126
141
|
module Rev011
|
127
142
|
class PlanFileParser < Rev012::PlanFileParser
|
128
143
|
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.6.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-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|