dtz_rss2email_profile

last updated: 2025-07-10

The dtz_rss2email_profile data source allows you to retrieve the current RSS2Email profile configuration from the DownToZero.cloud service. This profile defines the email settings for RSS feed notifications.

Example Usage

data "dtz_rss2email_profile" "current" {}
output "profile_email" {
value = data.dtz_rss2email_profile.current.email
}

Schema

Read-Only

  • email (String) The email address where RSS notifications are sent.
  • subject (String) The subject template for the email notifications. It may contain placeholders like {title} that are replaced with actual content from the RSS feed.
  • body (String) The body template for the email notifications. It may contain placeholders like {title}, {link}, {description} that are replaced with actual content from the RSS feed.

Terraform Docs

Github Sources