Skip to content

Commit

Permalink
Fixes terraform-provider-google#13266 Add Firebase label for all exam…
Browse files Browse the repository at this point in the history
…ples that creates a new Firebase Project (GoogleCloudPlatform#7149)

Fixes hashicorp/terraform-provider-google#13266
  • Loading branch information
rainshen49 authored and ericayyliu committed Jul 26, 2023
1 parent b73db30 commit 6ffbcf7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ resource "google_project" "default" {
project_id = "tf-test%{random_suffix}"
name = "tf-test%{random_suffix}"
org_id = "<%= ctx[:test_env_vars]['org_id'] %>"

labels = {
"firebase" = "enabled"
}
}

resource "google_firebase_project" "default" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ resource "google_project" "default" {
project_id = "tf-test%{random_suffix}"
name = "tf-test%{random_suffix}"
org_id = "<%= ctx[:test_env_vars]['org_id'] %>"

labels = {
"firebase" = "enabled"
}
}

resource "google_firebase_project" "default" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ resource "google_project" "default" {
project_id = "tf-test%{random_suffix}"
name = "tf-test%{random_suffix}"
org_id = "<%= ctx[:test_env_vars]['org_id'] %>"

labels = {
"firebase" = "enabled"
}
}

resource "google_firebase_project" "default" {
Expand Down

0 comments on commit 6ffbcf7

Please sign in to comment.