dtz_rss2email_feed

last updated: 2025-07-10

The dtz_rss2email_feed data source allows you to retrieve information about an RSS2Email feed from the DownToZero.cloud service.

Example Usage

data "dtz_rss2email_feed" "example" {
  url = "https://example.com/rss-feed"
}

output "feed_name" {
  value = data.dtz_rss2email_feed.example.name
}

Schema

Optional

  • url (String) The URL of the RSS feed to retrieve information about.

Read-Only

  • id (String) The ID of this resource.
  • name (String) The name of the RSS feed.
  • enabled (Boolean) Whether the feed is enabled or not.
  • last_check (String) The timestamp of the last check performed on the feed.
  • last_data_found (String) The timestamp when data was last found in the feed.

Terraform Docs

Github Sources