@@ -20,13 +20,12 @@ variable "cloud_sql" {
2020 notification_channels = optional (list (string ), [])
2121 instances = optional (map (object ({
2222 cpu_utilization = optional (list (object ({
23- severity = optional (string , " CRITICAL " ),
23+ severity = optional (string , " WARNING " ),
2424 threshold = optional (number , 0.90 )
2525 alignment_period = optional (string , " 120s" )
2626 duration = optional (string , " 300s" )
2727 })), [
2828 {
29- severity = " WARNING" ,
3029 threshold = 0.85 ,
3130 duration = " 1200s" ,
3231 },
@@ -38,29 +37,27 @@ variable "cloud_sql" {
3837 }
3938 ])
4039 memory_utilization = optional (list (object ({
41- severity = optional (string , " CRITICAL " ),
40+ severity = optional (string , " WARNING " ),
4241 threshold = optional (number , 0.90 )
4342 alignment_period = optional (string , " 300s" )
4443 duration = optional (string , " 300s" )
4544 })), [
4645 {
4746 severity = " WARNING" ,
48- threshold = 0.80 ,
4947 },
5048 {
5149 severity = " CRITICAL" ,
52- threshold = 0.90 ,
50+ threshold = 0.95 ,
5351 }
5452 ])
5553 disk_utilization = optional (list (object ({
56- severity = optional (string , " CRITICAL " ),
57- threshold = optional (number , 0.90 )
54+ severity = optional (string , " WARNING " ),
55+ threshold = optional (number , 0.85 )
5856 alignment_period = optional (string , " 300s" )
5957 duration = optional (string , " 600s" )
6058 })), [
6159 {
6260 severity = " WARNING" ,
63- threshold = 0.85 ,
6461 },
6562 {
6663 severity = " CRITICAL" ,
0 commit comments