From 136fe03e1dac6ccc018ba88e245e6cc0390274ac Mon Sep 17 00:00:00 2001 From: Lorenzo Caggioni Date: Fri, 11 Jun 2021 17:41:19 +0200 Subject: [PATCH] Remove extralines --- modules/project/service_accounts.tf | 3 +-- modules/project/variables.tf | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/project/service_accounts.tf b/modules/project/service_accounts.tf index e136eb1c4..dd0b50bfb 100644 --- a/modules/project/service_accounts.tf +++ b/modules/project/service_accounts.tf @@ -47,7 +47,6 @@ data "google_storage_project_service_account" "gcs_account" { } data "google_bigquery_default_service_account" "bq_sa" { - count = try(var.services["bigquery.googleapis.com"], false) ? 1 : 0 - + count = try(var.services["bigquery.googleapis.com"], false) ? 1 : 0 project = local.project.project_id } diff --git a/modules/project/variables.tf b/modules/project/variables.tf index 8096afd4f..d4f917b33 100644 --- a/modules/project/variables.tf +++ b/modules/project/variables.tf @@ -198,7 +198,6 @@ variable "logging_exclusions" { default = {} } - variable "contacts" { description = "List of essential contacts for this resource. Must be in the form EMAIL -> [NOTIFICATION_TYPES]. Valid notification types are ALL, SUSPENSION, SECURITY, TECHNICAL, BILLING, LEGAL, PRODUCT_UPDATES" type = map(list(string)) @@ -211,7 +210,6 @@ variable "service_perimeter_standard" { default = null } - variable "service_perimeter_bridges" { description = "Name of VPC-SC Bridge perimeters to add project into. Specify the name in the form of 'accessPolicies/ACCESS_POLICY_NAME/servicePerimeters/PERIMETER_NAME'." type = list(string)