terradactyl-terraform 1.2.1 → 1.4.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: 11e631baa96e27046b275f81bac0278e8de6df12fe6faad1e23f8183843dc883
4
- data.tar.gz: 6c4e638624c37e240ed580dca0f2cfa2b2a63b1fb4383b7839c6ea87cf6c2b66
3
+ metadata.gz: 113fcef2e929fb3499947658097b1c848913a59d9db50b7b62f00ab269d6738b
4
+ data.tar.gz: 352d27610119dd5489a9cdce1cdcb2155c0b9bbe83e205eadc2744e5ec285b09
5
5
  SHA512:
6
- metadata.gz: 974e91a4fda13702ddf1607b1d0e6324d39e186fca52937be86a1d48cf6163623013bb432ac63b5baa98f754f245c27a27cb4dc25c8d927ed2e6135e8f3e9604
7
- data.tar.gz: ae52c3bebfbed294a3aa9556559e48df250a8b8ac37bf572285b082370a039a8fb89413493f59ac66c3b24470a46c27fc340e6cfb0a30fe5af66c4a4c7b06c5e
6
+ metadata.gz: e9cce443f4ea98367856ec17f7e4d461790fb4f7761d68da7516fb3a78e07f0ae12e072905157b12f03ae24d0e77c9ed5fd295b031aba7b725a4660297ca13c6
7
+ data.tar.gz: ef8c8e0e69901e5fecd6fac3d45fbbb2f3f6f23f8ee7c6176422866679d0270b1421fef7a45843bb6316354e42ca7be9900c2d40bd1613e3810dad8bdc4cc463
data/.gitignore CHANGED
@@ -15,4 +15,5 @@ vendor
15
15
 
16
16
  # terraform artifacts
17
17
  *.tfout
18
+ *.tfstate.backup
18
19
  .terraform
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.4.0 (2023-03-13)
4
+
5
+ NEW FEATURES:
6
+
7
+ * add support for Terraform version `~> 1.4.0`
8
+ * update init, planfile, and destroy commands (add Rev1_04)
9
+ * add Rev1_04 rspecs
10
+
11
+ ## 1.3.0 (2022-09-21)
12
+
13
+ NEW FEATURES:
14
+
15
+ * add support for Terraform version `~> 1.3.0`
16
+ * update init, planfile, and destroy commands (add Rev1_03)
17
+ * add Rev1_03 rspecs
18
+
3
19
  ## 1.2.1 (2022-06-13)
4
20
 
5
21
  BUG FIX:
@@ -68,6 +68,18 @@ module Terradactyl
68
68
  end
69
69
  end
70
70
 
71
+ module Rev1_03
72
+ module Destroy
73
+ include Terradactyl::Terraform::Rev015::Destroy
74
+ end
75
+ end
76
+
77
+ module Rev1_04
78
+ module Destroy
79
+ include Terradactyl::Terraform::Rev015::Destroy
80
+ end
81
+ end
82
+
71
83
  module Commands
72
84
  class Destroy < Base
73
85
  end
@@ -65,6 +65,18 @@ module Terradactyl
65
65
  end
66
66
  end
67
67
 
68
+ module Rev1_03
69
+ module Init
70
+ include Terradactyl::Terraform::Rev015::Init
71
+ end
72
+ end
73
+
74
+ module Rev1_04
75
+ module Init
76
+ include Terradactyl::Terraform::Rev015::Init
77
+ end
78
+ end
79
+
68
80
  module Commands
69
81
  class Init < Base
70
82
  end
@@ -113,6 +113,16 @@ module Terradactyl
113
113
  end
114
114
  end
115
115
 
116
+ module Rev1_03
117
+ class PlanFileParser < Rev012::PlanFileParser
118
+ end
119
+ end
120
+
121
+ module Rev1_04
122
+ class PlanFileParser < Rev012::PlanFileParser
123
+ end
124
+ end
125
+
116
126
  module Rev011
117
127
  class PlanFileParser < Rev012::PlanFileParser
118
128
  def checksum
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Terradactyl
4
4
  module Terraform
5
- VERSION = '1.2.1'
5
+ VERSION = '1.4.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.2.1
4
+ version: 1.4.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: 2022-06-13 00:00:00.000000000 Z
11
+ date: 2023-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip