# Admin Account

You can configure a list of the principals (users, service accounts) with root admin access. Access control allows any API operation performed by such principals. If not set, it will default to **\[]**.

Admin accounts are set in the **config.yaml** for HQ under the [auth.administrators](https://docs.lenses.io/latest/deployment/hq#authconfig) key, as an array of **usernames**.

{% code title="config.yaml" %}

```yaml
auth:
  administrators:
  - admin
  - brian.lifeof@lenses.io
  - bob.builder@lenses.io    
```

{% endcode %}

## Changing the Admin Password

To change the admin password, update the **config.yaml** in the [auth.users](https://docs.lenses.io/latest/deployment/hq#authconfig) section. Set the password of the admin users.

{% hint style="success" %}
Passwords need to be bcrypt hashes.
{% endhint %}

You can use the Lenses CLI to create a bcrypt password. You can download the CLI [here](https://archive.lenses.io/lenses/6.1/). The executable for Lenses 6 CLI is called "hq".

```sh
hq utils hash-password
```

```yaml
auth:
  - admin
  - brian.lifeof@lenses.io
  - bob.builder@lenses.io
users:
  - username: admin
    password: $2a$12$XQW..XQrtZXCvbQWertqQeFi/1KoQW4eNephNXTfHqtoW9Q4qih5G 
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lenses.io/latest/deployment/configuration/authentication/admin-account.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
