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

> Terraform resource reference for vantage_saved_filter (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 SavedFilter.

## Example Usage

```terraform theme={null}
resource "vantage_saved_filter" "demo_filter" {
  title  = "Demo Saved Filter"
  filter = "(costs.provider = 'aws')"
}
```

## Schema

### Required

* `title` (String) Title of the Saved Filter
* `workspace_token` (String) Workspace token to add the saved filter into.

### Optional

* `filter` (String) VQL Query used for this saved filter.

### Read-Only

* `token` (String) Unique saved filter identifier
