> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mage.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Opensearch

## Basic config

```yaml theme={"system"}
connector_type: opensearch
host: https://[cluster_name].[region].es.amazonaws.com
index_name: test_index
```

## Authentication

```yaml theme={"system"}
verify_certs: true
http_auth: "@awsauth"
```

* **verify\_certs**: Whether to verify SSL certificates to authenticate.
* **http\_auth**: Authentication setting
  1. "@awsauth": Authenticate with AWS Signature Version 4. Need to provide
     AWS\_ACCESS\_KEY\_ID and AWS\_SECRET\_ACCESS\_KEY in environment variables.
  2. "username:password": Authenticate with username and password.
