terraform.aws-baseline-infra/modules/ManagementGovernance/Monitoring.EC2/variables.tf

27 lines
858 B
Terraform
Raw Normal View History

2022-11-02 18:05:26 +08:00
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"
}
2022-11-02 18:05:26 +08:00
variable "alarm-actions-emergency" {
type = string
default = "arn:aws:sns:ap-east-1:843733946244:rackspace-support-emergency"
}
2022-11-02 18:05:26 +08:00
variable "alarm-actions-standard" {
type = string
default = "arn:aws:sns:ap-east-1:843733946244:rackspace-support-standard"
}
2022-11-02 18:05:26 +08:00
variable "alarm-actions-general" {
type = string
default = "arn:aws:sns:ap-east-1:843733946244:rackspace-support"
}
2022-11-02 18:05:26 +08:00
variable "default-tags" {}
2022-11-02 18:05:26 +08:00
variable "threshold-CPUUtilization" {}
variable "threshold-mem_free" {}
variable "threshold-swap_free" {}
variable "threshold-disk_free" {}
2022-11-03 21:11:15 +08:00
variable "threshold-disk_inodes_free" {}
variable "threshold-processes_total" {}