terradactyl-terraform 1.2.0 → 1.3.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: 359a4fc58eb55407c6d9972a45e97d25f6bc9fc0d884fd432b8a8e7df61d0b5a
4
- data.tar.gz: c65d73ea3bd5d97d944efe82677debe5a4dd97cb98027988be0611a0da82d806
3
+ metadata.gz: 9108147b87b002c4a00a608e8fee6167c1b474c20992c156d698209dbf5c651c
4
+ data.tar.gz: b81439d293ecad440902e1cfab0d29bbf2a183bdea6905befdaa9b9161c180b2
5
5
  SHA512:
6
- metadata.gz: 35b47d2381c30ae1aa9abd566ed1dff47d96d9f9ed8769afba89d687c6d5ca6200836d8e5d3936a77a5f08affc01aa5da6188be8aafdae7c0a91e59176c15818
7
- data.tar.gz: fa6819c875544284247edfe7b9fbebec688a426d9324caeba72fa9ad121de67723f760779ab722d0d8f7cf58d76769b87d78e70e488169a9b27c11df9b5e682f
6
+ metadata.gz: 8d46194aad7fd75a107d3af5de74640fb302745d0c3bd922049f6fdce00c8562bc3ea810bfd9503bc04c303018a0d7f92fc9b9b0915908b5c5a3665ed9035f43
7
+ data.tar.gz: 691c8aaaea0f24edd51d9c72637b517c47047f47780916ced16a5a5171219bceb4ab32c49180f5ac68192cce5f123d954f4a0b1a09e88851e67e158b050f8c31
data/.gitignore CHANGED
@@ -8,6 +8,7 @@ Gemfile.lock
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  vendor
11
+ .DS_Store
11
12
 
12
13
  # rspec failure tracking
13
14
  .rspec_status
data/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.3.0 (2022-09-21)
4
+
5
+ NEW FEATURES:
6
+
7
+ * add support for Terraform version `~> 1.3.0`
8
+ * update init, planfile, and destroy commands (add Rev1_03)
9
+ * add Rev1_03 rspecs
10
+
11
+ ## 1.2.1 (2022-06-13)
12
+
13
+ BUG FIX:
14
+
15
+ * differentiate between `arm` and `arm64` architectures
16
+ * fixes binary downloader on Apple silicon
17
+
18
+ MISCELLANEOUS:
19
+
20
+ * Add `.DS_Store` to `.gitignore`
21
+
3
22
  ## 1.2.0 (2022-05-18)
4
23
 
5
24
  NEW FEATURES:
@@ -68,6 +68,12 @@ 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
+
71
77
  module Commands
72
78
  class Destroy < Base
73
79
  end
@@ -65,6 +65,12 @@ 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
+
68
74
  module Commands
69
75
  class Init < Base
70
76
  end
@@ -113,6 +113,11 @@ module Terradactyl
113
113
  end
114
114
  end
115
115
 
116
+ module Rev1_03
117
+ class PlanFileParser < Rev012::PlanFileParser
118
+ end
119
+ end
120
+
116
121
  module Rev011
117
122
  class PlanFileParser < Rev012::PlanFileParser
118
123
  def checksum
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Terradactyl
4
4
  module Terraform
5
- VERSION = '1.2.0'
5
+ VERSION = '1.3.0'
6
6
  end
7
7
  end
@@ -10,8 +10,10 @@ module Terradactyl
10
10
  'amd64'
11
11
  when /i?86|x86|i86pc/
12
12
  '386'
13
- when /^arm/
13
+ when /^arm$/
14
14
  'arm'
15
+ when /^arm64/
16
+ 'arm64'
15
17
  else
16
18
  raise "FATAL: Unsupported CPU arch, #{value}"
17
19
  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.0
4
+ version: 1.3.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-05-19 00:00:00.000000000 Z
11
+ date: 2022-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip