Skip to content

Commit

Permalink
tf fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCutter committed Jul 4, 2024
1 parent 1a3818e commit 1085583
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deployment/modules/gcs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ resource "google_service_account" "log_writer" {

resource "google_storage_bucket" "log" {
location = var.location
name = var.base_name
name = "${var.base_name}-bucket"
storage_class = "STANDARD"
uniform_bucket_level_access = true
}
Expand Down Expand Up @@ -68,8 +68,8 @@ resource "google_spanner_database" "log" {
}

resource "google_spanner_database_iam_binding" "database" {
instance = google_spanner_instance.log
database = google_spanner_database.log
instance = google_spanner_instance.log.name
database = google_spanner_database.log.name
role = "roles/compute.networkUser"

members = [
Expand Down

0 comments on commit 1085583

Please sign in to comment.