Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ Default: `"GitHubRepository"`

### <a name="input_template_summary"></a> [template\_summary](#input\_template\_summary)

Description: (Optional) A brief description of the Waypoint template, up to 110 characters.
Description: (Optional) A brief description of the Waypoint template, up to 64 characters.

Type: `string`

Default: `"This HCP Waypoint template is use to provision a GitHub repository."`
Default: `"This template is use to provision a GitHub repository."`

### <a name="input_template_variables"></a> [template\_variables](#input\_template\_variables)

Expand Down
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ variable "template_name" {
}

variable "template_summary" {
description = "(Optional) A brief description of the Waypoint template, up to 110 characters."
description = "(Optional) A brief description of the Waypoint template, up to 64 characters."
type = string
default = "This HCP Waypoint template is use to provision a GitHub repository."
default = "This template is use to provision a GitHub repository."

validation {
condition = length(var.template_summary) <= 110
error_message = "The template summary must not exceed 110 characters."
condition = length(var.template_summary) <= 64
error_message = "The template summary must not exceed 64 characters."
}
}

Expand Down