diff --git a/README.md b/README.md index 04ce7bd..37d3cea 100644 --- a/README.md +++ b/README.md @@ -132,11 +132,11 @@ Default: `"GitHubRepository"` ### [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."` ### [template\_variables](#input\_template\_variables) diff --git a/variables.tf b/variables.tf index 8e6eeb1..9d119cf 100644 --- a/variables.tf +++ b/variables.tf @@ -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." } }