terraspace_plugin_aws 0.4.0 → 0.4.1

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: 457ec45656217df84f77925ce9ce4e67a13af14c257454fe21fde3cfab8ccfc0
4
- data.tar.gz: 0dd0678a7f350ab9dac25ac5ddddccc24f7179af087f14bc49d4b82e0cdc9b89
3
+ metadata.gz: 95b6616183e8c70e88ac887cf5f78770ad64b475d66bee094a2ba86088c7092c
4
+ data.tar.gz: 28b59d3ebaec51b767b192c45c2d9a1a389c881945775e3feb69284a85ba9e66
5
5
  SHA512:
6
- metadata.gz: 374cb2699eae0ef79813becb5722387cc70e6afc93afa0b190286879525b2a5d4b457d6c9ba83a1be42d136a839ee282e87ff30fce4fb5372ec8d69e05e5c12a
7
- data.tar.gz: e997dad0cbcf4334142f42bce7e0bb3d743bb0790991d874c9cf6c69ae78e21574d233aaa73479c3545441b6316dca37d837312ec223c3b5574d855cb64037b2
6
+ metadata.gz: f842142813d980f761e4f637c62f56db1716891586f89fd846c7c611a2c2c95bbd50c94e58311a4caf21685c97e7878d63e1fb5f492bee56b43c05b2427c9817
7
+ data.tar.gz: 5cf6a34378c83c8f8bd06a4589884ca79568428c85d6ce83a90a0afc23d52d213466c555e9b566e2d853eeead5749ec4672fca8bf9218f07607a459543b069f9
data/CHANGELOG.md CHANGED
@@ -3,8 +3,11 @@
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.4.1] - 2022-06-14
7
+ - [#21](https://github.com/boltops-tools/terraspace_plugin_aws/pull/21) backend.tf template: add project variable
8
+
6
9
  ## [0.4.0] - 2022-06-10
7
- - [#20](https://github.com/boltops-tools/terraspace_plugin_aws/pull/20) Update Generated Default Backend Key and CI Interface
10
+ - [#20](https://github.com/boltops-tools/terraspace_plugin_aws/pull/20) Update Generated Default Backend Key and CI Interface
8
11
  - add ci interface class
9
12
  - change default backend key
10
13
 
@@ -1,7 +1,7 @@
1
1
  terraform {
2
2
  backend "s3" {
3
3
  bucket = "<%%= expansion('terraform-state-:ACCOUNT-:REGION-:ENV') %>"
4
- key = "<%%= expansion(':TYPE_DIR/:APP/:ROLE/:MOD_NAME/:ENV/:EXTRA/:REGION/terraform.tfstate') %>"
4
+ key = "<%%= expansion(':PROJECT/:TYPE_DIR/:APP/:ROLE/:MOD_NAME/:ENV/:EXTRA/:REGION/terraform.tfstate') %>"
5
5
  region = "<%%= expansion(':REGION') %>"
6
6
  encrypt = true
7
7
  dynamodb_table = "terraform_locks"
@@ -1,6 +1,6 @@
1
1
  backend("s3",
2
2
  bucket: "terraform-state-:ACCOUNT-:REGION-:ENV",
3
- key: ":TYPE_DIR/:APP/:ROLE/:MOD_NAME/:ENV/:EXTRA/:REGION/terraform.tfstate",
3
+ key: ":PROJECT/:TYPE_DIR/:APP/:ROLE/:MOD_NAME/:ENV/:EXTRA/:REGION/terraform.tfstate",
4
4
  region: ":REGION",
5
5
  encrypt: true,
6
6
  dynamodb_table: "terraform_locks"
@@ -1,3 +1,3 @@
1
1
  module TerraspacePluginAws
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
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.4.0
4
+ version: 0.4.1
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-06-10 00:00:00.000000000 Z
11
+ date: 2022-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-dynamodb