Skip to content

Commit

Permalink
Upgrade TF providers
Browse files Browse the repository at this point in the history
  • Loading branch information
BSick7 committed Nov 27, 2024
1 parent 6e5e8bb commit 40f2f26
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 55 deletions.
108 changes: 54 additions & 54 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.3.10 (Nov 27, 2024)
* Upgrade TF providers.

# 0.3.9 (Mar 22, 2024)
* Upgrade TF providers.

Expand Down
5 changes: 4 additions & 1 deletion gcp.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
data "google_client_config" "this" {}
data "google_compute_zones" "available" {}
data "google_project" "this" {}

locals {
project_id = data.google_compute_zones.available.project
project_id = data.google_project.this.project_id
region = data.google_client_config.this.region
available_zones = data.google_compute_zones.available.names
}

Expand Down

0 comments on commit 40f2f26

Please sign in to comment.