You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have the type set to heartbeat, and each time we apply terraform, the snitch has to be updated.
The readme say type value is basic, smart, but heartbeat seems accepted too.
Could you please add proper support for the heartbeat type? so it won't update for nothing anymore
Thanks a lot 🙏
resource "dmsnitch_snitch" "xsnitch" {
name = "devxxxxx"
interval = "10_minute"
type = "heartbeat"
tags = [var.environment, "xxx"]
}
# module.xxx.dmsnitch_snitch.xsnitch[0] will be updated in-place
~ resource "dmsnitch_snitch" "xsnitch" {
id = "1axxxxxxxe"
name = "devxxxxx"
tags = [
"xxx",
"dev",
]
~ type = "basic" -> "heartbeat"
# (5 unchanged attributes hidden)
}
The text was updated successfully, but these errors were encountered:
We have the
type
set toheartbeat
, and each time we apply terraform, the snitch has to be updated.The readme say
type
value isbasic, smart
, butheartbeat
seems accepted too.Could you please add proper support for the
heartbeat
type? so it won't update for nothing anymoreThanks a lot 🙏
The text was updated successfully, but these errors were encountered: