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

> Terraform resource reference for vantage_resource_report (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_resource_report" "demo_resource_report" {
  workspace_token = "wrkspc_47c3254c790e9351"
  title           = "Demo Resource Report"
  filter          = "resources.provider = 'aws' AND resources.type = 'aws_cloudtrail'"
}
```

## Schema

### Required

* `workspace_token` (String) The token of the Workspace to add the ResourceReport to.

### Optional

* `columns` (List of String) Array of column names to display in the table. Column names should match those returned by the /resource\_reports/columns endpoint. The order determines the display order. Only available for reports with a single resource type filter.
* `filter` (String) The VQL filter for the ResourceReport.
* `title` (String) The title of the ResourceReport.

### Read-Only

* `created_at` (String) The date and time, in UTC, the report was created. ISO 8601 Formatted.
* `created_by_token` (String) The token for the User or Team who created this ResourceReport.
* `id` (String) The token of the report
* `token` (String) The token of the report
* `user_token` (String) The token for the User who created this ResourceReport.
