dokploy_mattermost_notification (Resource)
A Mattermost notification channel (Settings > Notifications). Dokploy posts each message to an incoming webhook.
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 webhook_url in cleartext. The attribute is sensitive, so Terraform does not print it, but anyone with API access to the server can read it. The webhook_url_wo companion keeps it out of the Terraform state.
Example Usage
# Post to a Mattermost channel through an incoming webhook.
resource "dokploy_mattermost_notification" "deploys" {
name = "deploys"
channel = "deploys"
username = "dokploy"
webhook_url_wo = var.mattermost_webhook_url
webhook_url_wo_version = 1
app_deploy = true
}Schema
Required
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.channel(String) Channel that receives the message. Omit it to use the webhook’s default channel. If you remove it from the configuration, the provider clears it.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.server_threshold(Boolean) Send a message when a server crosses a resource threshold. Defaults tofalse.username(String) Display name of the poster. Omit it to use the webhook’s default. If you remove it from the configuration, the provider clears it.volume_backup(Boolean) Send a message when a volume backup runs. Defaults tofalse.webhook_url(String, Sensitive) Incoming webhook URL. Set this attribute orwebhook_url_wo.webhook_url_wo(String, Sensitive, Write-only) Write-only form ofwebhook_url. Terraform keeps it out of the plan and the state. It needs Terraform 1.11 or later. Set exactly one ofwebhook_urlandwebhook_url_wo. A new value reaches the server only whenwebhook_url_wo_versionchanges.webhook_url_wo_version(Number) Version ofwebhook_url_wo. Change it to send the currentwebhook_url_wovalue to the server. It needswebhook_url_wo.
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_mattermost_notification.example INt_PYqh9apo8mmDIoixZ