> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vantage.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# vantage_report_notification (Resource)

> Terraform resource reference for vantage_report_notification (Resource). Auto-generated from the vantage-sh/terraform-provider-vantage repository.

<Note>
  This page is auto-generated based on the official [Terraform documentation](https://registry.terraform.io/providers/vantage-sh/vantage/latest/docs).
</Note>

## Overview

Use this resource with the [Vantage Terraform provider](/terraform). For installation and authentication, see the [Terraform provider quickstart](/terraform#quickstart). The schema below is generated directly from the provider source.

Manages a Report Notification.

## Example Usage

```terraform theme={null}
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
