terraform.aws-baseline-infra/modules/ManagementGovernance/Monitoring.EC2/variables.tf
2022-11-03 21:11:15 +08:00

27 lines
858 B
HCL

variable "cw-alarm-prefix" {}
variable "actions-enabled" {}
variable "ec2-instance-id" {}
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" {}
variable "threshold-CPUUtilization" {}
variable "threshold-mem_free" {}
variable "threshold-swap_free" {}
variable "threshold-disk_free" {}
variable "threshold-disk_inodes_free" {}
variable "threshold-processes_total" {}