Skip to main content
This page is auto-generated based on the official Terraform documentation.

vantage_report_notification (Resource)

Manages a Report Notification.

Example Usage

resource "vantage_report_notification" "test_notif" {
  cost_report_token = vantage_cost_report.demo_report.token
  title = "Test Notification"
  user_tokens = ["usr_36b848747e1683bc", "usr_899b013c355547db"]
  frequency = "daily"
  change = "dollars"
  workspace_token = "wrkspc_47c3254c790e9351"
}

Schema

Required

  • change (String) The kind of change sent ReportNotification. One of percentage/dollars
  • cost_report_token (String) Token for the cost report to be used in the notification
  • frequency (String) The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
  • title (String) Title of the report notification
  • user_tokens (Set of String) Tokens for the users to be notified

Optional

  • workspace_token (String) Token for the workspace the report notification is added toe notification

Read-Only

  • token (String) Unique report notification identifier
I