Enforce nonempty descriptions ending in a colon

This commit is contained in:
Julio Castillo
2022-11-24 18:56:01 +01:00
parent 5a6ed05ba0
commit 612d7283e8
64 changed files with 272 additions and 236 deletions

View File

@@ -37,18 +37,18 @@ variable "project_id" {
}
variable "region" {
description = "Region"
description = "Region."
type = string
}
variable "service_account_create" {
description = "Flag indicating whether a service account needs to be created"
description = "Flag indicating whether a service account needs to be created."
type = bool
default = false
}
variable "service_account_email" {
description = "Service account for creating API configs"
description = "Service account for creating API configs."
type = string
default = null
}