terradactyl-terraform 1.5.0 → 1.7.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: 0c526499fa533c4aa0c3f59712b429738492d4a27b036e45bcf9bb6bc78792c3
4
- data.tar.gz: 25ea68a837280ed92a84a0935d9bc102061995a4e9bea59e1d4610a2b71dbfc4
3
+ metadata.gz: c61d5c7f95f1766f2de945d305776d8b3f26061cce628ce758eb5016d7306d97
4
+ data.tar.gz: fa42e59f3ff390d97d6b53944aef6b9f6b348d0a219de8f4165bf64df4bf93f9
5
5
  SHA512:
6
- metadata.gz: 0f161bb77e345c35c3a886e8becf6f668e1f0ce15cfa28b1dd726cd8a95ff67158e69b73d950882f7ed82d26d5f5831d6d081bfd48dce0fedda68a09dab0d60e
7
- data.tar.gz: 87513d7a35042ab1138ba44773c075a3a46b00b81e0b842bef2ae8ae336b0949fea5ec1f8248c72b8f352b4b90875754fffe35b74b032f11764c427a8acf494f
6
+ metadata.gz: 9485ea4a80d031abef8da6c4f7aa9a836f22a33fd56ffb0ba0d7316c8ee19a9f8496786d8230276f8d41056c71d3ea9057a4e0c282df548ba7f141ba290962c4
7
+ data.tar.gz: 422383ddea10375bedddca0cd47f32a47e052c5d48e3905469c196d175aeb2db657bd473a38ea0285377a0a6d6a0e9908d8df23252674bbae6411e004d5322d9
@@ -21,7 +21,7 @@ jobs:
21
21
  runs-on: ubuntu-latest
22
22
  steps:
23
23
  - name: Checkout Code
24
- uses: actions/checkout@v2
24
+ uses: actions/checkout@v4
25
25
  - name: Setup Ruby
26
26
  uses: ruby/setup-ruby@v1
27
27
  with:
@@ -13,7 +13,7 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - name: Git clone
16
- uses: actions/checkout@v2
16
+ uses: actions/checkout@v4
17
17
  with:
18
18
  fetch-depth: 2
19
19
  - name: Setup Ruby
@@ -13,7 +13,7 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - name: Git clone
16
- uses: actions/checkout@v2
16
+ uses: actions/checkout@v4
17
17
  with:
18
18
  fetch-depth: 2
19
19
  - name: Setup Ruby
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.7.0 (2024-01-17)
4
+ * add support for Terraform version `~> 1.r76.0`
5
+ * update init, planfile, and destroy commands (add Rev1_0r76)
6
+ * add Rev1_07 rspecs
7
+
8
+ ## 1.6.0 (2023-10-04)
9
+ * add support for Terraform version `~> 1.6.0`
10
+ * update init, planfile, and destroy commands (add Rev1_06)
11
+ * add Rev1_06 rspecs
12
+
3
13
  ## 1.5.0 (2023-06-12)
4
14
 
5
15
  NEW FEATURES:
@@ -39,7 +49,7 @@ BUG FIX:
39
49
  * differentiate between `arm` and `arm64` architectures
40
50
  * fixes binary downloader on Apple silicon
41
51
 
42
- MISCELLANEOUS:
52
+ MISCELLANEOUS:
43
53
 
44
54
  * Add `.DS_Store` to `.gitignore`
45
55
 
@@ -86,6 +86,18 @@ module Terradactyl
86
86
  end
87
87
  end
88
88
 
89
+ module Rev1_06
90
+ module Destroy
91
+ include Terradactyl::Terraform::Rev015::Destroy
92
+ end
93
+ end
94
+
95
+ module Rev1_07
96
+ module Destroy
97
+ include Terradactyl::Terraform::Rev015::Destroy
98
+ end
99
+ end
100
+
89
101
  module Commands
90
102
  class Destroy < Base
91
103
  end
@@ -83,6 +83,18 @@ module Terradactyl
83
83
  end
84
84
  end
85
85
 
86
+ module Rev1_06
87
+ module Init
88
+ include Terradactyl::Terraform::Rev015::Init
89
+ end
90
+ end
91
+
92
+ module Rev1_07
93
+ module Init
94
+ include Terradactyl::Terraform::Rev015::Init
95
+ end
96
+ end
97
+
86
98
  module Commands
87
99
  class Init < Base
88
100
  end
@@ -133,6 +133,16 @@ module Terradactyl
133
133
  end
134
134
  end
135
135
 
136
+ module Rev1_06
137
+ class PlanFileParser < Rev012::PlanFileParser
138
+ end
139
+ end
140
+
141
+ module Rev1_07
142
+ class PlanFileParser < Rev012::PlanFileParser
143
+ end
144
+ end
145
+
136
146
  module Rev011
137
147
  class PlanFileParser < Rev012::PlanFileParser
138
148
  def checksum
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Terradactyl
4
4
  module Terraform
5
- VERSION = '1.5.0'
5
+ VERSION = '1.7.0'
6
6
  end
7
7
  end
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.5.0
4
+ version: 1.7.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-06-12 00:00:00.000000000 Z
11
+ date: 2024-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip