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

> Terraform resource reference for vantage_folder (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 Folder.

## Example Usage

```terraform theme={null}
resource "vantage_folder" "demo_folder" {
  title = "Demo Folder"

  # Include either the parent_folder_token or workspace_token
  # If both are included, the API will use the parent_folder_token

  # Uncomment one of the following:
  # parent_folder_token = "fldr_47c3254c790e9351"
  workspace_token = "wrkspc_47c3254c790e9351"

  # Optional: Apply saved filters to all Cost Reports in this folder
  # saved_filter_tokens = ["svd_fltr_1234567890abcdef"]
}
```

## Schema

### Required

* `title` (String) Title of the folder

### Optional

* `parent_folder_token` (String) Token of the folder's parent folder
* `saved_filter_tokens` (List of String) Tokens of the SavedFilters to apply to any Cost Report contained within the Folder.
* `workspace_token` (String) Workspace token to add the cost report to.

### Read-Only

* `token` (String) Unique folder identifier
