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

> Terraform resource reference for vantage_report_forecast (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_scenario_model" "demo" {
  title = "Hiring Plan"

  periods = [{
    start_at    = "2026-01-01"
    end_at      = "2026-03-31"
    amount      = 1250.75
    amount_type = "dollar"
  }]
}

resource "vantage_report_forecast" "demo" {
  title                 = "Board Plan"
  cost_report_token     = vantage_cost_report.demo_report.token
  scenario_model_tokens = [vantage_scenario_model.demo.token]
  set_as_default        = true
}
```

## Schema

### Required

* `cost_report_token` (String)
* `title` (String)

### Optional

* `business_metric_token` (String)
* `scenario_model_tokens` (List of String)
* `set_as_default` (Boolean)

### Read-Only

* `created_at` (String)
* `created_by_token` (String)
* `id` (String) The id of the report forecast
* `is_default` (Boolean)
* `token` (String) The token of the report forecast
* `updated_at` (String)
