terradactyl-terraform 1.6.0 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b36a7e64011be5115b310c46c7dd57e287983288f45688fb2633654340a1fdc
|
4
|
+
data.tar.gz: 01cdafbbfe6a4025e03bd05f57cfa6d1458cd0d2deeb4126a410ebf3b4ce02bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 439d0d72510c36d950305dc08d794b926308f9c5faef045af116c31dd669be6cc32e8a52a528f354efce03a4418ebf10d59bccfe32bc39b826f29c6e10d537eb
|
7
|
+
data.tar.gz: '086410255b2ee3ce7bb778e068e9ee2ca24e24b6c44c9a8bf72070d5fa051dc4d142ed0cb7446da650aabd582a547c51211890f7a7eb11c2684796a151778e0b'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## 1.8.0 (2025-04-10)
|
4
|
+
* add support for Terraform version `~> 1.8.0`
|
5
|
+
* update init, planfile, and destroy commands (add Rev1_08)
|
6
|
+
* add Rev1_08 rspecs
|
7
|
+
|
8
|
+
## 1.7.0 (2024-01-17)
|
9
|
+
* add support for Terraform version `~> 1.7.0`
|
10
|
+
* update init, planfile, and destroy commands (add Rev1_07)
|
11
|
+
* add Rev1_07 rspecs
|
12
|
+
|
3
13
|
## 1.6.0 (2023-10-04)
|
4
14
|
* add support for Terraform version `~> 1.6.0`
|
5
15
|
* update init, planfile, and destroy commands (add Rev1_06)
|
@@ -92,6 +92,18 @@ module Terradactyl
|
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
+
module Rev1_07
|
96
|
+
module Destroy
|
97
|
+
include Terradactyl::Terraform::Rev015::Destroy
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
module Rev1_08
|
102
|
+
module Destroy
|
103
|
+
include Terradactyl::Terraform::Rev015::Destroy
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
95
107
|
module Commands
|
96
108
|
class Destroy < Base
|
97
109
|
end
|
@@ -89,6 +89,18 @@ module Terradactyl
|
|
89
89
|
end
|
90
90
|
end
|
91
91
|
|
92
|
+
module Rev1_07
|
93
|
+
module Init
|
94
|
+
include Terradactyl::Terraform::Rev015::Init
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
module Rev1_08
|
99
|
+
module Init
|
100
|
+
include Terradactyl::Terraform::Rev015::Init
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
92
104
|
module Commands
|
93
105
|
class Init < Base
|
94
106
|
end
|
@@ -138,6 +138,16 @@ module Terradactyl
|
|
138
138
|
end
|
139
139
|
end
|
140
140
|
|
141
|
+
module Rev1_07
|
142
|
+
class PlanFileParser < Rev012::PlanFileParser
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
module Rev1_08
|
147
|
+
class PlanFileParser < Rev012::PlanFileParser
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
141
151
|
module Rev011
|
142
152
|
class PlanFileParser < Rev012::PlanFileParser
|
143
153
|
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.8.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:
|
11
|
+
date: 2024-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|