terraspace_plugin_aws 0.3.7 → 0.3.8

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: 1f6548d387f1353c70c8d7ce848f22f5e77f3cc0e9c2aaa19c9357c724b77ce9
4
- data.tar.gz: 140d53ddb0ee7688a90b8acc04189d48079c88685d9d296420b8df3e5b9f05bd
3
+ metadata.gz: 40cb12d1e56a49725c34046f09e29fcaa2df134807ce2eb9085fc0a0f1ab7b15
4
+ data.tar.gz: 444f868cd95b106dd0ebe2e4e8c881c40c9fcdfdefa2ac6a42d0c6bcad2ba5a1
5
5
  SHA512:
6
- metadata.gz: f920f7e43bb2fdd470ddbf1a12c906f0d76b4630070f466929d01941c82daead85cb7a5f955d9ca9dad129cbd144f91c81e9a6c4f7e84dbdd58585cf99c83e51
7
- data.tar.gz: e61f88175f512a64687521f8cbc78b484702e2367d6c0eb65e40ef2a4a019a68ca54487b145787cfa525870437ff59aac61b459b735468759ec1d388a5ec02a9
6
+ metadata.gz: 62e74c36390ec676e45e0cbd0a9c2831125670caba4cfb378e526b9bb20387c5e4a4683da4793e3d4b74cabab85efcb42281d2feb4e683321a3bda05cfa12f0b
7
+ data.tar.gz: e62c34071a40957b1e0585cb8af21ad25d6b928e7a27b9c5c67bb1ad1014d6aff516b559c0de02ef11feea162e7b62ceae3fc3650d7a8a686990f8b4394321c6
data/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [0.3.8] - 2022-06-09
7
+ - [#19](https://github.com/boltops-tools/terraspace_plugin_aws/pull/19) fix bucket tagging: use parsed region from backend.tf for s3 client
8
+
6
9
  ## [0.3.7] - 2022-02-15
7
10
  - [#18](https://github.com/boltops-tools/terraspace_plugin_aws/pull/18) update starter s3 bucket example to work with terraform aws provider v4
8
11
 
@@ -1,10 +1,8 @@
1
1
  class TerraspacePluginAws::Interfaces::Backend::Bucket
2
- class Tagging
3
- include TerraspacePluginAws::Clients
4
- include TerraspacePluginAws::Logging
5
-
6
- def initialize(bucket)
7
- @bucket = bucket
2
+ class Tagging < TerraspacePluginAws::Interfaces::Backend::Base
3
+ def initialize(info)
4
+ super
5
+ @bucket = info['bucket']
8
6
  end
9
7
 
10
8
  def tag
@@ -34,7 +34,7 @@ class TerraspacePluginAws::Interfaces::Backend
34
34
  end
35
35
 
36
36
  def tag(bucket)
37
- Tagging.new(@info["bucket"]).tag
37
+ Tagging.new(@info).tag
38
38
  end
39
39
  end
40
40
  end
@@ -1,3 +1,3 @@
1
1
  module TerraspacePluginAws
2
- VERSION = "0.3.7"
2
+ VERSION = "0.3.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terraspace_plugin_aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-02-15 00:00:00.000000000 Z
11
+ date: 2022-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-dynamodb
@@ -209,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
209
  - !ruby/object:Gem::Version
210
210
  version: '0'
211
211
  requirements: []
212
- rubygems_version: 3.2.32
212
+ rubygems_version: 3.3.12
213
213
  signing_key:
214
214
  specification_version: 4
215
215
  summary: Terraspace AWS Plugin