yandex_lb_network_load_balancer (Resource)
- Example usage
- Schema
- Optional
- Read-Only
- Nested Schema for attached_target_group
- Nested Schema for attached_target_group.healthcheck
- Nested Schema for attached_target_group.healthcheck.http_options
- Nested Schema for attached_target_group.healthcheck.tcp_options
- Nested Schema for listener
- Nested Schema for listener.external_address_spec
- Nested Schema for listener.internal_address_spec
- Nested Schema for timeouts
- Import
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) Thetrue
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 providerfolder-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.
attached_target_group
Nested Schema for 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.
attached_target_group.healthcheck
Nested Schema for 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 theHEALTHY
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 toUNHEALTHY
. The default is 2.
attached_target_group.healthcheck.http_options
Nested Schema for 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/
.
attached_target_group.healthcheck.tcp_options
Nested Schema for Required:
port
(Number) Port to use for TCP health checks.
listener
Nested Schema for 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.
listener.external_address_spec
Nested Schema for 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 ofipv4
oripv6
. The default isipv4
.
listener.internal_address_spec
Nested Schema for 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 ofipv4
oripv6
. The default isipv4
.
timeouts
Nested Schema for 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 ...