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

> Terraform resource reference for vantage_access_grant (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 an AccessGrant.

## Example Usage

```terraform theme={null}
resource "vantage_access_grant" "demo_access_grant" {
  team_token = "team_bd5c2d8abc233bfd"
  resource_token = "rprt_39d256c871cb6b2b"
}
```

## Schema

### Required

* `resource_token` (String) Token of the resource being granted.
* `team_token` (String) Token of the team being granted.

### Optional

* `access` (String) Access level of the grant. Must be either `allowed` or `denied`.

### Read-Only

* `id` (String) Id of the access grant.
* `token` (String) Token of the access grant.
