• Application Load Balancer (ALB)
  • Audit Trails
  • Certificate Manager
  • Client Config
  • Cloud Backup
  • Cloud Billing
  • Cloud Content Delivery Network (CDN)
  • Cloud Domain Name System (DNS)
  • Cloud Logging
  • Cloud Organization
  • Compute Cloud
  • Container Registry
  • Data Processing
  • Data Transfer
  • Datasphere
  • Identity and Access Management (IAM)
  • IoT Core
  • Key Management Service (KMS)
  • Load Testing
  • Lockbox (Secret Management)
  • Managed Kubernetes (MK8S) Marketplace
  • Managed Service for Apache Airflow
  • Managed Service for Apache Kafka
  • Managed Service for ClickHouse
  • Managed Service for Elasticsearch
  • Managed Service for Greenplum
  • Managed Service for Kubernetes (MK8S)
  • Managed Service for MongoDB
  • Managed Service for MySQL
  • Managed Service for OpenSearch
  • Managed Service for PostgreSQL
  • Managed Service for Redis
  • Managed Service for SQLServer
  • Managed Service for YDB
  • Message Queue
  • Monitoring
  • Network Load Balancer (NLB)
  • Object Storage (S3)
  • Resource Manager
  • Serverless Cloud Functions
  • Serverless Containers
  • Serverless Integrations
  • Smart Captcha
  • Smart Web Security (SWS)
  • V2 Resources
  • Virtual Private Cloud (VPC)
  • Yandex API Gateway

yandex_lb_network_load_balancer (Resource)

Creates a network load balancer in the specified folder using the data specified in the config. For more information, see the official documentation.

Example usage

//
// Create a new Network Load Balancer (NLB).
//
resource "yandex_lb_network_load_balancer" "my_nlb" {
  name = "my-network-load-balancer"

  listener {
    name = "my-listener"
    port = 8080
    external_address_spec {
      ip_version = "ipv4"
    }
  }

  attached_target_group {
    target_group_id = yandex_lb_target_group.my-target-group.id

    healthcheck {
      name = "http"
      http_options {
        port = 8080
        path = "/ping"
      }
    }
  }
}

Schema

Optional

  • allow_zonal_shift (Boolean) Flag that marks the network load balancer as available to zonal shift.
  • attached_target_group (Block Set) An AttachedTargetGroup resource. (see below for nested schema)
  • deletion_protection (Boolean) The true value means that resource is protected from accidental deletion.
  • 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.
  • labels (Map of String) A set of key/value label pairs which assigned to resource.
  • listener (Block Set) Listener specification that will be used by a network load balancer.

~> One of external_address_spec or internal_address_spec should be specified. (see below for nested schema)

  • name (String) The resource name.
  • region_id (String) ID of the availability zone where the network load balancer resides. If omitted, default region is being used.
  • timeouts (Block, Optional) (see below for nested schema)
  • type (String) Type of the network load balancer. Must be one of 'external' or 'internal'. The default is 'external'.

Read-Only

  • created_at (String) The creation timestamp of the resource.
  • id (String) The ID of this resource.

Nested Schema for attached_target_group

Required:

  • healthcheck (Block List, Min: 1) A HealthCheck resource.

~> One of http_options or tcp_options should be specified. (see below for nested schema)

  • target_group_id (String) ID of the target group.

Nested Schema for attached_target_group.healthcheck

Required:

  • name (String) Name of the health check. The name must be unique for each target group that attached to a single load balancer.

Optional:

  • healthy_threshold (Number) Number of successful health checks required in order to set the HEALTHY status for the target.
  • http_options (Block List, Max: 1) Options for HTTP health check. (see below for nested schema)
  • interval (Number) The interval between health checks. The default is 2 seconds.
  • tcp_options (Block List, Max: 1) Options for TCP health check. (see below for nested schema)
  • timeout (Number) Timeout for a target to return a response for the health check. The default is 1 second.
  • unhealthy_threshold (Number) Number of failed health checks before changing the status to UNHEALTHY. The default is 2.

Nested Schema for attached_target_group.healthcheck.http_options

Required:

  • port (Number) Port to use for HTTP health checks.

Optional:

  • path (String) URL path to set for health checking requests for every target in the target group. For example /ping. The default path is /.

Nested Schema for attached_target_group.healthcheck.tcp_options

Required:

  • port (Number) Port to use for TCP health checks.

Nested Schema for listener

Required:

  • name (String) Name of the listener. The name must be unique for each listener on a single load balancer.
  • port (Number) Port for incoming traffic.

Optional:

  • external_address_spec (Block Set, Max: 1) External IP address specification. (see below for nested schema)
  • internal_address_spec (Block Set, Max: 1) Internal IP address specification. (see below for nested schema)
  • protocol (String) Protocol for incoming traffic. TCP or UDP and the default is TCP.
  • target_port (Number) Port of a target. The default is the same as listener's port.

Nested Schema for listener.external_address_spec

Optional:

  • address (String) External IP address for a listener. IP address will be allocated if it wasn't been set.
  • ip_version (String) IP version of the external addresses that the load balancer works with. Must be one of ipv4 or ipv6. The default is ipv4.

Nested Schema for listener.internal_address_spec

Required:

  • subnet_id (String) ID of the subnet to which the internal IP address belongs.

Optional:

  • address (String) Internal IP address for a listener. Must belong to the subnet that is referenced in subnet_id. IP address will be allocated if it wasn't been set.
  • ip_version (String) IP version of the external addresses that the load balancer works with. Must be one of ipv4 or ipv6. The default is ipv4.

Nested Schema for timeouts

Optional:

  • create (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
  • delete (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
  • update (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

Import

The resource can be imported by using their resource ID. For getting the resource ID you can use Yandex Cloud Web Console or YC CLI.

# terraform import yandex_lb_network_load_balancer.<resource Name> <resource Id>
terraform import yandex_lb_network_load_balancer.my_nlb ...
Предыдущая
Следующая