From a243ddd473522a7346e0f5b4f0276aa24fb4ec96 Mon Sep 17 00:00:00 2001 From: Nick Adams Date: Thu, 22 Apr 2021 17:46:00 -0500 Subject: [PATCH] Fixed description for vars --- variables.tf | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/variables.tf b/variables.tf index d074cb0..fd9dbe9 100644 --- a/variables.tf +++ b/variables.tf @@ -1,142 +1,142 @@ variable "fqdn" { type = string - definition = "The fully qualified domain name of the resource this health check should point to." + description = "The fully qualified domain name of the resource this health check should point to." } variable "health_check_name" { type = string - definition = "The name of the resource" + description = "The name of the resource" } variable "health_check_port" { type = number default = 80 - definition = "The port of the resource this health check should point to." + description = "The port of the resource this health check should point to." } variable "health_check_type" { type = string default = "HTTPS" - definition = "The type of check this health check should use." + description = "The type of check this health check should use." } variable "health_check_resource_path" { type = string default = "/" - definition = "The path of the resource this health check should point to." + description = "The path of the resource this health check should point to." } variable "health_check_failure_threshold" { type = string default = "5" - definition = "The failure threshold this health check should use." + description = "The failure threshold this health check should use." } variable "health_check_request_interval" { type = string default = "30" - definition = "The request interval this health check should use." + description = "The request interval this health check should use." } variable "health_check_measure_latency" { type = bool default = false - definition = "Should this enable measure latency for this health check?" + description = "Should this enable measure latency for this health check?" } variable "health_check_invert_healthcheck" { type = bool default = false - definition = "Should this invert health for this health check?" + description = "Should this invert health for this health check?" } variable "health_check_disabled" { type = bool default = false - definition = "Should this health check be disabled?" + description = "Should this health check be disabled?" } variable "health_check_enable_sni" { type = bool default = true - definition = "Should this health check use SNI? For HTTP, use false; For HTTPS, use true" + description = "Should this health check use SNI? For HTTP, use false; For HTTPS, use true" } variable "health_check_regions" { type = list(string) default = [] - definition = "The regions that this health check is checked from." + description = "The regions that this health check is checked from." } variable "alarm_name" { type = string - definition = "The name to use for the cloudwatch alarm." + description = "The name to use for the cloudwatch alarm." } variable "alarm_description" { type = string default = "Alarm for Route53 health check" - definition = "The name to use for the cloudwatch alarm." + description = "The name to use for the cloudwatch alarm." } variable "alarm_comparison_operator" { type = string default = "LessThanThreshold" - definition = "The name to use for the cloudwatch alarm." + description = "The name to use for the cloudwatch alarm." } variable "alarm_evaluation_periods" { type = number default = 1 - definition = "The amount of evaluation periods to use for the cloudwatch alarm." + description = "The amount of evaluation periods to use for the cloudwatch alarm." } variable "alarm_period" { type = number default = 60 - definition = "The period to use for the cloudwatch alarm." + description = "The period to use for the cloudwatch alarm." } variable "alarm_threshold" { type = number default = 1 - definition = "The threshold to use for the cloudwatch alarm." + description = "The threshold to use for the cloudwatch alarm." } variable "alarm_treat_missing_data" { type = string default = "missing" - definition = "How should we treat missing data for the cloudwatch alarm?" + description = "How should we treat missing data for the cloudwatch alarm?" } variable "alarm_datapoints_to_alarm" { type = number default = 1 - definition = "The number of datapoints to use for the cloudwatch alarm." + description = "The number of datapoints to use for the cloudwatch alarm." } variable "alarm_actions" { type = list(string) default = [] - definition = "What are the alarm destinations?" + description = "What are the alarm destinations?" } variable "alarm_insufficient_data_actions" { type = list(string) default = [] - definition = "What are the alarm insufficent data destinations?" + description = "What are the alarm insufficent data destinations?" } variable "alarm_ok_actions" { type = list(string) default = [] - definition = "What are the alarm ok destinations?" + description = "What are the alarm ok destinations?" } variable "alarm_actions_enabled" { type = bool default = false - definition = "Should we enable alarm actions?" + description = "Should we enable alarm actions?" } variable "tags" {