> ## 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_anomaly_notification (Resource)

> Terraform resource reference for vantage_anomaly_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.

## Example Usage

```terraform theme={null}
resource "vantage_anomaly_notification" "demo_anomaly_notification" {
  cost_report_token = "rpt_47c3254c790e9351"
  threshold = 10
  recipient_channels = ["#alerts"]
}
```

## Schema

### Required

* `cost_report_token` (String) The token of the Cost Report that has the notification.

### Optional

* `recipient_channels` (List of String) The Slack/MS Teams channels that receive the notification.
* `threshold` (Number) The threshold amount that must be met for the notification to fire.
* `user_tokens` (List of String) The tokens of the Users that receive the notification.

### Read-Only

* `created_at` (String) The date and time, in UTC, the AnomalyNotification was created. ISO 8601 Formatted.
* `id` (String) The id of the report alert
* `token` (String) The token of the AnomalyNotification
* `updated_at` (String) The date and time, in UTC, the AnomalyNotification was last updated at. ISO 8601 Formatted.
