Closed alonz closed 2 years ago
According to the alerts v2 docs
is_enabled - (Boolean) True by default
is_enabled
however omitting is_enabled from my TF file, results in terraform plan attempting to set it to null
~ resource "logzio_alert_v2" "deployment_alerts" { id = "1954723" - is_enabled = true -> null tags = [ "alert", "deployment", ] # (13 unchanged attributes hidden) # (1 unchanged block hidden) } Plan: 0 to add, 1 to change, 0 to destroy.
which in turn disables the alert So either the documentation is wrong or it does not work as intended. Not a big issue just requires always setting is_enabled = true to get an active alert.
is_enabled = true
Hi @alonz , Thanks for reaching out. We'll work on a fix for it in the next version.
Hi @alonz , we release v1.10.3 that should resolve this issue. Can you please confirm that the issue is solved?
Thanks !
According to the alerts v2 docs
however omitting
is_enabled
from my TF file, results in terraform plan attempting to set it to nullwhich in turn disables the alert So either the documentation is wrong or it does not work as intended. Not a big issue just requires always setting
is_enabled = true
to get an active alert.