terraspace_plugin_google 0.3.3 → 0.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: 0a0b80fe04a11716e39db70f0b64264f2eccecd150a4095307c0d108ef1b6f2b
4
- data.tar.gz: b04f6e945ece9bf18bcd4956844d47675e460f23c35c52132813e43195da4fbf
3
+ metadata.gz: 0ee01133cfd8c39db829850b3a3f4b7e7d666b19ee80a59110b812f4e1a28472
4
+ data.tar.gz: 79f451387710cafcd197dd0587d2cc13f2f18c8d4ce17df5fd8d78ef1662d8e4
5
5
  SHA512:
6
- metadata.gz: a94bac4d8de2cfc1b661368bed8edb2f90ebb3f8ccf7f285018535112d8d0da3d06a43d75af73bbd8c3840e6e583b9708a94fd0ddd157c1873e7e206d627e989
7
- data.tar.gz: fa4e9afe18caae22b987a84b87626a46529fd27eb12e64b3d4cebc269efa10090c7e14a45f6a640292d1320aac1fc9217ef4a8759b2bbd345e5648b7d11006ef
6
+ metadata.gz: b66536dc2fd67abac5c4a6ce63fe163848b68fc29b7f3cee5ea016375895be5a3964056c86173907be8d1444bc33f3c7762275a0558e6a00846e52b995e988d6
7
+ data.tar.gz: c1b96f881f96bb5ecbc4754d33bee2cf6d69682625597371ee544efa269377493470c36647db54e5c3b2f00c7db8adf0a550c23cca2cd379fe3433d4f921bf0d
data/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
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.0] - 2022-06-10
7
+ - [#13](https://github.com/boltops-tools/terraspace_provider_google/pull/13) update generated backend key and ci interface
8
+
9
+ ## [0.3.5] - 2022-01-11
10
+ - [#11](https://github.com/boltops-tools/terraspace_provider_google/pull/11) set GOOGLE_CLOUD_PROJECT while keeping backwards compatibility
11
+
12
+ ## [0.3.4] - 2022-01-11
13
+ - [#10](https://github.com/boltops-tools/terraspace_provider_google/pull/10) set GOOGLE_CLOUD_PROJECT while keeping backwards compatibility
14
+
6
15
  ## [0.3.3] - 2022-01-04
7
16
  - [#9](https://github.com/boltops-tools/terraspace_provider_google/pull/9) google_secret support expansion automatically
8
17
 
@@ -1,6 +1,6 @@
1
1
  terraform {
2
2
  backend "gcs" {
3
3
  bucket = "<%%= expansion('terraform-state-:PROJECT-:REGION-:ENV') %>"
4
- prefix = "<%%= expansion(':REGION/:ENV/:BUILD_DIR') %>"
4
+ prefix = "<%%= expansion(':TYPE_DIR/:APP/:ROLE/:MOD_NAME/:ENV/:EXTRA/:REGION') %>"
5
5
  }
6
6
  }
@@ -1,4 +1,4 @@
1
1
  backend("gcs",
2
- bucket: "terraform-state-:PROJECT-:REGION-:ENV", # expanded by terraspace IE: terraform-state-project-us-central1-dev
3
- prefix: ":REGION/:ENV/:BUILD_DIR", # expanded by terraspace IE: us-central1/dev/modules/vm
2
+ bucket: "terraform-state-:PROJECT-:REGION-:ENV",
3
+ prefix: ":TYPE_DIR/:APP/:ROLE/:MOD_NAME/:ENV/:EXTRA/:REGION",
4
4
  )
@@ -6,6 +6,17 @@ module TerraspacePluginGoogle
6
6
  module Clients
7
7
  extend Memoist
8
8
 
9
+ def initialize(*)
10
+ # So google sdk newer versions use GOOGLE_CLOUD_PROJECT instead of GOOGLE_PROJECT
11
+ # Found out between google-cloud-storage-1.35.0 and google-cloud-storage-1.28.0
12
+ # Though it seems like an library underneath that with the change.
13
+ # Keeping backwards compatibility to not create breakage users who already have GOOGLE_PROJECT
14
+ # But then setting GOOGLE_CLOUD_PROJECT so it works with the SDK.
15
+ # For users, who set GOOGLE_CLOUD_PROJECT that will work also.
16
+ ENV['GOOGLE_CLOUD_PROJECT'] ||= ENV['GOOGLE_PROJECT']
17
+ super
18
+ end
19
+
9
20
  def secret_manager_service
10
21
  Google::Cloud::SecretManager.secret_manager_service
11
22
  end
@@ -0,0 +1,12 @@
1
+ module TerraspacePluginGoogle::Interfaces
2
+ class Ci
3
+ def vars
4
+ {
5
+ GOOGLE_APPLICATION_CREDENTIALS: '${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}',
6
+ GOOGLE_PROJECT: '${{ secrets.GOOGLE_PROJECT }}',
7
+ GOOGLE_REGION: '${{ secrets.GOOGLE_REGION }}',
8
+ GOOGLE_ZONE: '${{ secrets.GOOGLE_ZONE }}',
9
+ }
10
+ end
11
+ end
12
+ end
@@ -9,7 +9,14 @@ module TerraspacePluginGoogle::Interfaces::Helper
9
9
  def initialize(mod, options={})
10
10
  @mod, @options = mod, options
11
11
  @base64 = options[:base64]
12
- @project_id = options[:google_project] || ENV['GOOGLE_PROJECT'] || raise("GOOGLE_PROJECT env variable is not set. It's required.")
12
+ @project_id = options[:google_project] || ENV['GOOGLE_CLOUD_PROJECT'] || ENV['GOOGLE_PROJECT'] || raise("GOOGLE_PROJECT env variable is not set. It's required.")
13
+ # So google sdk newer versions use GOOGLE_CLOUD_PROJECT instead of GOOGLE_PROJECT
14
+ # Found out between google-cloud-storage-1.35.0 and google-cloud-storage-1.28.0
15
+ # Though it seems like an library underneath that with the change.
16
+ # Keeping backwards compatibility to not create breakage users who already have GOOGLE_PROJECT
17
+ # But then setting GOOGLE_CLOUD_PROJECT so it works with the SDK.
18
+ # For users, who set GOOGLE_CLOUD_PROJECT that will work also.
19
+ ENV['GOOGLE_CLOUD_PROJECT'] ||= @project_id
13
20
  end
14
21
 
15
22
  def fetch(short_name, version: "latest")
@@ -1,3 +1,3 @@
1
1
  module TerraspacePluginGoogle
2
- VERSION = "0.3.3"
2
+ VERSION = "0.4.0"
3
3
  end
@@ -39,5 +39,6 @@ Terraspace::Plugin.register("google",
39
39
  config_class: TerraspacePluginGoogle::Interfaces::Config,
40
40
  helper_class: TerraspacePluginGoogle::Interfaces::Helper,
41
41
  layer_class: TerraspacePluginGoogle::Interfaces::Layer,
42
+ ci_class: TerraspacePluginGoogle::Interfaces::Ci,
42
43
  root: File.dirname(__dir__),
43
44
  )
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terraspace_plugin_google
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.4.0
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-01-04 00:00:00.000000000 Z
11
+ date: 2022-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gcp_data
@@ -140,6 +140,7 @@ files:
140
140
  - lib/terraspace_plugin_google/autoloader.rb
141
141
  - lib/terraspace_plugin_google/clients.rb
142
142
  - lib/terraspace_plugin_google/interfaces/backend.rb
143
+ - lib/terraspace_plugin_google/interfaces/ci.rb
143
144
  - lib/terraspace_plugin_google/interfaces/config.rb
144
145
  - lib/terraspace_plugin_google/interfaces/expander.rb
145
146
  - lib/terraspace_plugin_google/interfaces/helper.rb
@@ -169,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
170
  - !ruby/object:Gem::Version
170
171
  version: '0'
171
172
  requirements: []
172
- rubygems_version: 3.2.32
173
+ rubygems_version: 3.3.12
173
174
  signing_key:
174
175
  specification_version: 4
175
176
  summary: Terraspace Google Cloud Plugin