dokploy_telegram_notification (Resource)
A Telegram notification channel (Settings > Notifications). Dokploy sends each message through a bot to a chat.
Each event attribute selects one Dokploy event that sends a message on this channel. All events default to false, so a new channel sends nothing until you enable one.
~> Dokploy does not test the channel on create or update. A wrong URL or token applies successfully and fails on the first message.
~> Dokploy stores and returns bot_token in cleartext. The attribute is sensitive, so Terraform does not print it, but anyone with API access to the server can read it. The bot_token_wo companion keeps it out of the Terraform state.
Example Usage
# Send server alerts to a Telegram group topic through a bot.
resource "dokploy_telegram_notification" "alerts" {
name = "alerts"
chat_id = "-1001234567890"
message_thread_id = "42"
# Write-only: Terraform 1.11 or later. Change the version to rotate the token.
bot_token_wo = var.telegram_bot_token
bot_token_wo_version = 1
server_threshold = true
dokploy_restart = true
}Schema
Required
chat_id(String) Id of the chat or group that receives the message.name(String) Display name. Dokploy does not enforce a unique name.
Optional
NOTE: Write-only arguments are supported in Terraform 1.11 and later.
app_build_error(Boolean) Send a message when a build fails. Defaults tofalse.app_deploy(Boolean) Send a message when an application or a compose deploys. Defaults tofalse.bot_token(String, Sensitive) Token of the bot, from BotFather. Set this attribute orbot_token_wo.bot_token_wo(String, Sensitive, Write-only) Write-only form ofbot_token. Terraform keeps it out of the plan and the state. It needs Terraform 1.11 or later. Set exactly one ofbot_tokenandbot_token_wo. A new value reaches the server only whenbot_token_wo_versionchanges.bot_token_wo_version(Number) Version ofbot_token_wo. Change it to send the currentbot_token_wovalue to the server. It needsbot_token_wo.database_backup(Boolean) Send a message when a database backup runs. Defaults tofalse.docker_cleanup(Boolean) Send a message when the Docker cleanup runs. Defaults tofalse.dokploy_backup(Boolean) Send a message when the Dokploy server backup runs. Defaults tofalse.dokploy_restart(Boolean) Send a message when Dokploy restarts. Defaults tofalse.message_thread_id(String) Topic id inside a forum group. Omit it for a plain chat. If you remove it from the configuration, the provider clears it.server_threshold(Boolean) Send a message when a server crosses a resource threshold. Defaults tofalse.volume_backup(Boolean) Send a message when a volume backup runs. Defaults tofalse.
Read-Only
created_at(String) Creation timestamp from the server.id(String) Notification id.
Import
Import is supported using the following syntax:
The terraform import command can be used, for example:
terraform import dokploy_telegram_notification.example INt_PYqh9apo8mmDIoixZ