File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -366,18 +366,14 @@ variable "key_vault" {
366366 sku_name = optional (string , " standard" )
367367
368368 secret_near_expiry_alert = optional (object ({
369- # evaluation_frequency = optional(string, "P1D")
370- # window_duration = optional(string, "P1D")
371- evaluation_frequency = optional (string , " PT5M" )
372- window_duration = optional (string , " PT15M" )
369+ evaluation_frequency = optional (string , " P1D" ) # every 24 hours
370+ window_duration = optional (string , " P1D" ) # last 24 hours
373371 threshold = optional (number , 1 )
374372 }), {})
375373
376374 secret_expired_alert = optional (object ({
377- # evaluation_frequency = optional(string, "PT15M")
378- # window_duration = optional(string, "PT1H")
379- evaluation_frequency = optional (string , " PT5M" )
380- window_duration = optional (string , " PT15M" )
375+ evaluation_frequency = optional (string , " PT15M" ) # every 15 mins
376+ window_duration = optional (string , " PT1H" ) # last 1 hour
381377 threshold = optional (number , 1 )
382378 }), {})
383379 })
You can’t perform that action at this time.
0 commit comments