20 lines
618 B
Terraform
20 lines
618 B
Terraform
|
# variable target-group {}
|
||
|
variable load-balancer {}
|
||
|
variable threshold-HealthHostCountMin {}
|
||
|
variable alarm-actions-urgent {
|
||
|
type = string
|
||
|
default = "arn:aws:sns:ap-east-1:843733946244:rackspace-support-urgent"
|
||
|
}
|
||
|
variable alarm-actions-emergency {
|
||
|
type = string
|
||
|
default = "arn:aws:sns:ap-east-1:843733946244:rackspace-support-emergency"
|
||
|
}
|
||
|
variable alarm-actions-standard {
|
||
|
type = string
|
||
|
default = "arn:aws:sns:ap-east-1:843733946244:rackspace-support-standard"
|
||
|
}
|
||
|
variable alarm-actions-general {
|
||
|
type = string
|
||
|
default = "arn:aws:sns:ap-east-1:843733946244:rackspace-support"
|
||
|
}
|
||
|
variable default-tags {}
|