Remove extralines

This commit is contained in:
Lorenzo Caggioni 2021-06-11 17:41:19 +02:00
parent dc01db0426
commit 136fe03e1d
2 changed files with 1 additions and 4 deletions

View File

@ -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
}

View File

@ -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)