Add periods at the end of each description field where missing (#478)

This commit is contained in:
Simone Ruffilli
2022-01-31 10:45:34 +01:00
committed by GitHub
parent e2abd772f2
commit abb6b50a46
97 changed files with 253 additions and 253 deletions

View File

@@ -40,7 +40,7 @@ module "group" {
| [customer_id](variables.tf#L17) | Directory customer ID in the form customers/C0xxxxxxx. | <code>string</code> | ✓ | |
| [display_name](variables.tf#L32) | Group display name. | <code>string</code> | ✓ | |
| [name](variables.tf#L43) | Group ID (usually an email). | <code>string</code> | ✓ | |
| [description](variables.tf#L26) | Group description | <code>string</code> | | <code>null</code> |
| [description](variables.tf#L26) | Group description. | <code>string</code> | | <code>null</code> |
| [members](variables.tf#L37) | List of group members. | <code>list&#40;string&#41;</code> | | <code>&#91;&#93;</code> |
## Outputs

View File

@@ -24,7 +24,7 @@ variable "customer_id" {
}
variable "description" {
description = "Group description"
description = "Group description."
type = string
default = null
}