---
title: 'Ресурс selectel_dbaas_prometheus_metric_token_v1'
sidebar_label: "selectel_dbaas_prometheus_metric_token_v1"
description: 'Creates and manages tokens in Selectel Managed Databases required to get access to the metrics in the Prometheus format using public API v1'
sidebar_position: 14
---

# Ресурс selectel\_dbaas\_prometheus\_metric\_token\_v1

:::info

Эта инструкция — копия документации Selectel Terraform-провайдера в [Terraform Registry](https://registry.terraform.io/providers/selectel/selectel/latest/docs).

:::

Creates and manages tokens required to get access to the metrics in the Prometheus format using public API v1. For more information about export of Prometheus metrics, see the official Selectel documentation for [PostgreSQL](/managed-databases/postgresql/monitoring/#export-metrics-in-prometheus-format), [PostgreSQL for 1C](/managed-databases/postgresql-for-1c/monitoring/#export-metrics-in-prometheus-format), [PostgreSQL TimescaleDB](/managed-databases/timescaledb/monitoring/#export-metrics-in-prometheus-format), [MySQL semi-sync](/managed-databases/mysql-semi-sync/monitoring/#export-metrics-in-prometheus-format), [MySQL sync](/managed-databases/mysql-sync/monitoring/#export-metrics-in-prometheus-format), [Redis](/managed-databases/redis/monitoring/#export-metrics-in-prometheus-format), and [Kafka](/managed-databases/kafka/monitoring/#export-metrics-in-prometheus-format).

## Example Usage \{#example-usage}

```hcl
resource "selectel_dbaas_prometheus_metric_token_v1" "token_1" {
  project_id = selectel_vpc_project_v2.project_1.id
  region     = "ru-3"
  name       = "token"
}
```

## Argument Reference \{#argument-reference}

* `project_id` - (Required) Unique identifier of the associated project. Changing this creates a new token. Retrieved from the [selectel\_vpc\_project\_v2](/terraform/selectel-provider-reference/resources/vpc_project_v2) resource. Learn more about [Projects](/access-control/projects/about-projects/).

* `region` - (Required) Pool where the database is located, for example, `ru-3`. Changing this creates a new token. Learn more about available pools in [Product availability by location](/infrastructure/product-availability-by-location/#managed-databases).

* `name` - (Required) Token name. Changing this creates a new token.

## Attributes Reference \{#attributes-reference}

* `value` (Sensitive) - Token value.

## Import \{#import}

You can import a token:

```shell
export OS_DOMAIN_NAME=<account_id>
export OS_USERNAME=<username>
export OS_PASSWORD=<password>
export INFRA_PROJECT_ID=<selectel_project_id>
export INFRA_REGION=<selectel_pool>
terraform import selectel_dbaas_prometheus_metric_token_v1.token_1 <token_id>
```

where:

* `<account_id>` — Selectel account ID. The account ID is in the top right corner of the [Control panel](https://my.selectel.ru/). Learn more about [Registration](/account/registration/).

* `<username>` — Name of the service user. To get the name, in the [Control panel](https://my.selectel.ru/iam/users_management/users?type=service), go to **Identity & Access Management** ⟶ **User management** ⟶ the **Service users** tab ⟶ copy the name of the required user. Learn more about [Service users](/access-control/access-management/).

* `<password>` — Password of the service user.

* `<selectel_project_id>` — Unique identifier of the associated project. To get the ID, in the [Control panel](https://my.selectel.ru/vpc/dbaas), go to **Cloud Platform** ⟶ project name ⟶ copy the ID of the required project. Learn more about [Projects](/access-control/projects/about-projects/).

* `<selectel_pool>` — Pool where the cluster is located, for example, `ru-3`. To get information about the pool, in the [Control panel](https://my.selectel.ru/vpc/default/dbaas/), go to **Cloud Platform** ⟶ **Managed Databases**. The pool is in the **Pool** column.

* `<token_id>` — Unique identifier of the token, for example, `b311ce58-2658-46b5-b733-7a0f418703f2`. To get the token ID in the [Control panel](https://my.selectel.ru/vpc/default/dbaas/), go to **Cloud Platform** ⟶ **Managed Databases** ⟶ the cluster page ⟶ **Monitoring** tab ⟶ **Metrics in the Prometheus format** section ⟶ **Manage tokens**.
