Skip to content

Commit

Permalink
Fixed description for vars
Browse files Browse the repository at this point in the history
  • Loading branch information
skyfox675 authored Apr 22, 2021
1 parent d84166e commit a243ddd
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -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" {
Expand Down

0 comments on commit a243ddd

Please sign in to comment.