From 3747312a5d0d2f2b33d506101613c11518f061e2 Mon Sep 17 00:00:00 2001 From: Nash Luffman Date: Thu, 16 Nov 2023 13:16:47 +0000 Subject: [PATCH] Fix incorrect syntax --- infra/gcp/main.tf | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/infra/gcp/main.tf b/infra/gcp/main.tf index 64b6e8a..87a1023 100644 --- a/infra/gcp/main.tf +++ b/infra/gcp/main.tf @@ -93,7 +93,5 @@ resource "google_project_iam_member" "pubsub_subscriber" { project = var.project role = "roles/pubsub.subscriber" - members = [ - google_service_account.spot_interruption_exporter.member, - ] + member = google_service_account.spot_interruption_exporter.member }