Yandex Cloud
Поиск
Связаться с экспертомПопробовать бесплатно
  • Кейсы
  • Документация
  • Блог
  • Все сервисы
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Neurosupport
    • VibeCraft
    • Yandex Cloud Detection and Response
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • GOST Gateway
    • Yandex SIEM
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • SourceCraft
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • Статус работы сервисов
  • Marketplace
    • Популярные
    • Инфраструктура и сеть
    • Платформа данных
    • Искусственный интеллект
    • Безопасность
    • Инструменты DevOps
    • Бессерверные вычисления
    • Управление ресурсами
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Yandex Cloud Trust
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Облако для интеграторов
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Контент-программа
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Калькулятор цен
    • Тарифы
    • Акции и free tier
  • Кейсы
  • Документация
  • Блог
Создавайте контент и получайте гранты!Готовы написать своё руководство? Участвуйте в контент-программе и получайте гранты на работу с облачными сервисами!
Подробнее о программе
Проект Яндекса
© 2026 ООО «Яндекс.Облако»
Terraform в Yandex Cloud
  • Начало работы
  • Настройка аутентификации Terraform-провайдера Yandex Cloud
  • Библиотека решений
    • Обзор
    • История изменений (англ.)
          • alb_backend_group
          • alb_http_router
          • alb_load_balancer
          • alb_target_group
          • alb_virtual_host

В этой статье:

  • Example usage
  • Arguments & Attributes Reference
  1. Справочник Terraform
  2. Ресурсы (англ.)
  3. Application Load Balancer
  4. Data Sources
  5. alb_backend_group

yandex_alb_backend_group (DataSource)

Статья создана
Yandex Cloud
Обновлена 23 сентября 2026 г.
Открыть в Markdown
  • Example usage
  • Arguments & Attributes Reference

Get information about a Yandex Application Load Balancer Backend Group. For more information, see official documentation.

This data source is used to define Application Load Balancer Backend Groups that can be used by other resources.

Важно

One of backend_group_id or name should be specified.

Example usageExample usage

//
// Get information about existing ALB Backend Group
//
data "yandex_alb_backend_group" "my_alb_bg" {
  backend_group_id = yandex_alb_backend_group.my_backend_group.id
}

Arguments & Attributes ReferenceArguments & Attributes Reference

  • backend_group_id (String). Backend Group ID.
  • created_at (Read-Only) (String). The creation timestamp of the resource.
  • description (String). The resource description.
  • folder_id (String). The folder identifier that resource belongs to. If it is not provided, the default provider folder-id is used.
  • id (String).
  • labels (Map Of String). A set of key/value label pairs which assigned to resource.
  • name (String). The resource name.
  • grpc_backend [Block].
    • name (Read-Only) (String).
    • port (Number).
    • target_group_ids (Read-Only) (List Of String).
    • weight (Number).
    • healthcheck [Block].
      • healthcheck_port (Number).
      • healthy_threshold (Number).
      • interval (Read-Only) (String).
      • interval_jitter_percent (Number).
      • timeout (Read-Only) (String).
      • unhealthy_threshold (Number).
      • grpc_healthcheck [Block].
        • service_name (String).
      • http_healthcheck [Block].
        • expected_statuses (Read-Only) (List Of Number).
        • host (String).
        • http2 (Bool).
        • path (Read-Only) (String).
      • stream_healthcheck [Block].
        • receive (String).
        • send (String).
      • tls [Block]. TLS settings for the health check.
        • sni (String). Server name indication (SNI) to be sent to the backend.
        • client_certificate [Block]. Client certificate to present during TLS handshake.
          • certificate_id (String). ID of the client certificate.
        • validation_context [Block]. Validation context for the TLS connection.
          • trusted_ca_bytes (String). PEM-encoded trusted CA certificate bytes.
          • trusted_ca_id (String). ID of the trusted CA certificate.
    • load_balancing_config [Block].
      • locality_aware_routing_percent (Number).
      • mode (String).
      • panic_threshold (Number).
      • strict_locality (Bool).
    • tls [Block]. TLS settings for the backend connection.
      • sni (String). Server name indication (SNI) to be sent to the backend.
      • client_certificate [Block]. Client certificate to present during TLS handshake.
        • certificate_id (String). ID of the client certificate.
      • validation_context [Block]. Validation context for the TLS connection.
        • trusted_ca_bytes (String). PEM-encoded trusted CA certificate bytes.
        • trusted_ca_id (String). ID of the trusted CA certificate.
  • http_backend [Block]. HTTP backend specification that will be used by the ALB Backend Group
    • http2 (Bool). Enables HTTP2 for upstream requests. If not set, HTTP 1.1 will be used by default.
    • name (Read-Only) (String). Name of the backend.
    • port (Number). Port for incoming traffic.
    • storage_bucket (String). Name of bucket which should be used as a backend.
    • target_group_ids (List Of String). References target groups for the backend.
    • weight (Number). Weight of the backend.
    • healthcheck [Block].
      • healthcheck_port (Number).
      • healthy_threshold (Number).
      • interval (Read-Only) (String).
      • interval_jitter_percent (Number).
      • timeout (Read-Only) (String).
      • unhealthy_threshold (Number).
      • grpc_healthcheck [Block].
        • service_name (String).
      • http_healthcheck [Block].
        • expected_statuses (Read-Only) (List Of Number).
        • host (String).
        • http2 (Bool).
        • path (Read-Only) (String).
      • stream_healthcheck [Block].
        • receive (String).
        • send (String).
      • tls [Block]. TLS settings for the health check.
        • sni (String). Server name indication (SNI) to be sent to the backend.
        • client_certificate [Block]. Client certificate to present during TLS handshake.
          • certificate_id (String). ID of the client certificate.
        • validation_context [Block]. Validation context for the TLS connection.
          • trusted_ca_bytes (String). PEM-encoded trusted CA certificate bytes.
          • trusted_ca_id (String). ID of the trusted CA certificate.
    • load_balancing_config [Block].
      • locality_aware_routing_percent (Number).
      • mode (String).
      • panic_threshold (Number).
      • strict_locality (Bool).
    • tls [Block]. TLS settings for the backend connection.
      • sni (String). Server name indication (SNI) to be sent to the backend.
      • client_certificate [Block]. Client certificate to present during TLS handshake.
        • certificate_id (String). ID of the client certificate.
      • validation_context [Block]. Validation context for the TLS connection.
        • trusted_ca_bytes (String). PEM-encoded trusted CA certificate bytes.
        • trusted_ca_id (String). ID of the trusted CA certificate.
  • session_affinity [Block].
    • connection [Block]. IP address affinity
      • source_ip (Bool). Use source IP address
    • cookie [Block]. Cookie affinity
      • name (Read-Only) (String). Name of the HTTP cookie
      • path (String). Path of the HTTP cookie
      • ttl (String). TTL for the cookie (if not set, session cookie will be used)
    • header [Block]. Request header affinity
      • header_name (String). The name of the request header that will be used
  • stream_backend [Block].
    • enable_proxy_protocol (Bool).
    • keep_connections_on_host_health_failure (Bool).
    • name (Read-Only) (String).
    • port (Number).
    • target_group_ids (Read-Only) (List Of String).
    • weight (Number).
    • healthcheck [Block].
      • healthcheck_port (Number).
      • healthy_threshold (Number).
      • interval (Read-Only) (String).
      • interval_jitter_percent (Number).
      • timeout (Read-Only) (String).
      • unhealthy_threshold (Number).
      • grpc_healthcheck [Block].
        • service_name (String).
      • http_healthcheck [Block].
        • expected_statuses (Read-Only) (List Of Number).
        • host (String).
        • http2 (Bool).
        • path (Read-Only) (String).
      • stream_healthcheck [Block].
        • receive (String).
        • send (String).
      • tls [Block]. TLS settings for the health check.
        • sni (String). Server name indication (SNI) to be sent to the backend.
        • client_certificate [Block]. Client certificate to present during TLS handshake.
          • certificate_id (String). ID of the client certificate.
        • validation_context [Block]. Validation context for the TLS connection.
          • trusted_ca_bytes (String). PEM-encoded trusted CA certificate bytes.
          • trusted_ca_id (String). ID of the trusted CA certificate.
    • load_balancing_config [Block].
      • locality_aware_routing_percent (Number).
      • mode (String).
      • panic_threshold (Number).
      • strict_locality (Bool).
    • tls [Block]. TLS settings for the backend connection.
      • sni (String). Server name indication (SNI) to be sent to the backend.
      • client_certificate [Block]. Client certificate to present during TLS handshake.
        • certificate_id (String). ID of the client certificate.
      • validation_context [Block]. Validation context for the TLS connection.
        • trusted_ca_bytes (String). PEM-encoded trusted CA certificate bytes.
        • trusted_ca_id (String). ID of the trusted CA certificate.

Была ли статья полезна?

Предыдущая
История изменений (англ.)
Следующая
alb_http_router
Создавайте контент и получайте гранты!Готовы написать своё руководство? Участвуйте в контент-программе и получайте гранты на работу с облачными сервисами!
Подробнее о программе
Проект Яндекса
© 2026 ООО «Яндекс.Облако»