--- # generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "opensearch_dashboard_tenant Resource - terraform-provider-opensearch" subcategory: "" description: |- Provides an OpenSearch dashboard tenant resource. Please refer to the OpenSearch documentation for details. --- # opensearch_dashboard_tenant (Resource) Provides an OpenSearch dashboard tenant resource. Please refer to the OpenSearch documentation for details. ## Example Usage ```terraform # Create a tenant resource "opensearch_dashboard_tenant" "test" { tenant_name = "test" description = "test tenant" } ``` ## Schema ### Required - `tenant_name` (String) The name of the tenant. ### Optional - `description` (String) Description of the tenant. ### Read-Only - `id` (String) The ID of this resource. - `index` (String) ## Import Import is supported using the following syntax: ```shell terraform import opensearch_dashboard_tenant.writer test ```