---
title: "Data source selectel_global_router_quota_v1"
sidebar_label: "selectel_global_router_quota_v1"
description: "Provides a list of quotas in the Global Router service using public API v1"
sidebar_position: 21
---

# Data source selectel\_global\_router\_quota\_v1

:::info

This instruction is a copy of the Selectel Terraform provider documentation in the [Terraform Registry](https://registry.terraform.io/providers/selectel/selectel/latest/docs).

:::

Provides a list of quotas in the Global Router service using public API v1. For more information about service limits and restrictions, see the [official Selectel documentation](/global-router/about-global-router/#limits).

## Example Usage \{#example-usage}

```hcl
data "selectel_global_router_quota_v1" "quota_1" {
  name        = "routers"
  scope       = "account_id"
  scope_value = "12345"
}
```

## Argument Reference \{#argument-reference}

* `name` - (Required) Name of a resource under the quota. Available names: `routers`, `networks`, `subnets`, and `static_routes`.
* `scope` - (Optional) Scope of the quota. Global Router quotas are currently applied only at the account level; the only available scope value is `account`.
* `scope_value` - (Optional) Unique identifier for the specified `scope`; for the account level, this is your Selectel account ID. You can find your account ID in the top right corner of the [Control panel](https://my.selectel.ru/).

## Attributes Reference \{#attributes-reference}

* `id` - Unique quota identifier.
* `name` - Name of the resource within the quota.
* `scope` - Scope of the quota. The only value currently available is `account`.
* `scope_value` - Scope value (Selectel account ID).
* `limit` - Quota limit; the maximum number of the specified resource that can be created.
