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

> Terraform resource reference for vantage_workspace (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 Workspace.

## Example Usage

```terraform theme={null}
resource "vantage_workspace" "example" {
  name                       = "Example Workspace"
  currency                   = "EUR"
  enable_currency_conversion = true
  exchange_rate_date         = "daily_rate"
}
```

## Schema

### Required

* `name` (String) Name of the workspace.

### Optional

* `currency` (String) Currency code for the workspace. Only applies when `enable_currency_conversion` is `true`; setting a non-USD currency while conversion is disabled is not supported.
* `enable_currency_conversion` (Boolean) Enable currency conversion for the workspace.
* `exchange_rate_date` (String) The date to use for currency conversion.

### Read-Only

* `created_at` (String) The date and time, in UTC, the Workspace was created. ISO 8601 Formatted.
* `id` (String) Alias of `token`.
* `token` (String) The token of the workspace
