We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24e009a commit 3b86971Copy full SHA for 3b86971
dialogflow-cx/terraform/main.tf
@@ -54,7 +54,7 @@ data "archive_file" "source" {
54
55
resource "google_storage_bucket_object" "archive" {
56
name = "index.zip"
57
- bucket = "ccai-samples-df-tf"
+ bucket = "${var.project_id}-ccai-samples-df-tf"
58
source = data.archive_file.source.output_path
59
depends_on = [data.archive_file.source]
60
}
oidc/main.tf
@@ -53,7 +53,7 @@ resource "google_project_service" "service" {
53
resource "google_storage_bucket" "bucket" {
project = var.project_id
- name = "ccai-samples-df-tf"
+ name = "${var.project_id}-ccai-samples-df-tf"
location = "US"
uniform_bucket_level_access = true
force_destroy = true
0 commit comments