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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 40cb12d1e56a49725c34046f09e29fcaa2df134807ce2eb9085fc0a0f1ab7b15
|
|
4
|
+
data.tar.gz: 444f868cd95b106dd0ebe2e4e8c881c40c9fcdfdefa2ac6a42d0c6bcad2ba5a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
4
|
-
|
|
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
|
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.
|
|
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-
|
|
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.
|
|
212
|
+
rubygems_version: 3.3.12
|
|
213
213
|
signing_key:
|
|
214
214
|
specification_version: 4
|
|
215
215
|
summary: Terraspace AWS Plugin
|