We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 304007b commit 10326b4Copy full SHA for 10326b4
dogfood/contents/main.tf
@@ -91,6 +91,10 @@ data "coder_parameter" "res_mon_memory_threshold" {
91
default = 80
92
description = "The memory usage threshold used in resources monitoring to trigger notifications."
93
mutable = true
94
+ validation {
95
+ min = 0
96
+ max = 100
97
+ }
98
}
99
100
data "coder_parameter" "res_mon_volume_threshold" {
@@ -99,6 +103,10 @@ data "coder_parameter" "res_mon_volume_threshold" {
103
104
description = "The volume usage threshold used in resources monitoring to trigger notifications."
101
105
106
107
108
109
102
110
111
112
data "coder_parameter" "res_mon_volume_path" {
0 commit comments