terradactyl-terraform 1.3.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9108147b87b002c4a00a608e8fee6167c1b474c20992c156d698209dbf5c651c
4
- data.tar.gz: b81439d293ecad440902e1cfab0d29bbf2a183bdea6905befdaa9b9161c180b2
3
+ metadata.gz: 113fcef2e929fb3499947658097b1c848913a59d9db50b7b62f00ab269d6738b
4
+ data.tar.gz: 352d27610119dd5489a9cdce1cdcb2155c0b9bbe83e205eadc2744e5ec285b09
5
5
  SHA512:
6
- metadata.gz: 8d46194aad7fd75a107d3af5de74640fb302745d0c3bd922049f6fdce00c8562bc3ea810bfd9503bc04c303018a0d7f92fc9b9b0915908b5c5a3665ed9035f43
7
- data.tar.gz: 691c8aaaea0f24edd51d9c72637b517c47047f47780916ced16a5a5171219bceb4ab32c49180f5ac68192cce5f123d954f4a0b1a09e88851e67e158b050f8c31
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,13 @@
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
+
3
11
  ## 1.3.0 (2022-09-21)
4
12
 
5
13
  NEW FEATURES:
@@ -74,6 +74,12 @@ module Terradactyl
74
74
  end
75
75
  end
76
76
 
77
+ module Rev1_04
78
+ module Destroy
79
+ include Terradactyl::Terraform::Rev015::Destroy
80
+ end
81
+ end
82
+
77
83
  module Commands
78
84
  class Destroy < Base
79
85
  end
@@ -71,6 +71,12 @@ module Terradactyl
71
71
  end
72
72
  end
73
73
 
74
+ module Rev1_04
75
+ module Init
76
+ include Terradactyl::Terraform::Rev015::Init
77
+ end
78
+ end
79
+
74
80
  module Commands
75
81
  class Init < Base
76
82
  end
@@ -118,6 +118,11 @@ module Terradactyl
118
118
  end
119
119
  end
120
120
 
121
+ module Rev1_04
122
+ class PlanFileParser < Rev012::PlanFileParser
123
+ end
124
+ end
125
+
121
126
  module Rev011
122
127
  class PlanFileParser < Rev012::PlanFileParser
123
128
  def checksum
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Terradactyl
4
4
  module Terraform
5
- VERSION = '1.3.0'
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.3.0
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-09-21 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