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

@@ -64,12 +64,12 @@ module "gateway" {
|---|---|:---:|:---:|:---:|
| [api_id](variables.tf#L17) | API identifier. | <code>string</code> | ✓ | |
| [project_id](variables.tf#L34) | Project identifier. | <code>string</code> | ✓ | |
| [region](variables.tf#L39) | Region | <code>string</code> | ✓ | |
| [region](variables.tf#L39) | Region. | <code>string</code> | ✓ | |
| [spec](variables.tf#L56) | String with the contents of the OpenAPI spec. | <code>string</code> | ✓ | |
| [iam](variables.tf#L22) | IAM bindings for the API in {ROLE => [MEMBERS]} format. | <code>map&#40;list&#40;string&#41;&#41;</code> | | <code>null</code> |
| [labels](variables.tf#L28) | Map of labels. | <code>map&#40;string&#41;</code> | | <code>null</code> |
| [service_account_create](variables.tf#L44) | Flag indicating whether a service account needs to be created | <code>bool</code> | | <code>false</code> |
| [service_account_email](variables.tf#L50) | Service account for creating API configs | <code>string</code> | | <code>null</code> |
| [service_account_create](variables.tf#L44) | Flag indicating whether a service account needs to be created. | <code>bool</code> | | <code>false</code> |
| [service_account_email](variables.tf#L50) | Service account for creating API configs. | <code>string</code> | | <code>null</code> |
## Outputs

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
}