Skip to content

Commit

Permalink
Refactor net-ilb-l7 module for Terraform 1.3 (#974)
Browse files Browse the repository at this point in the history
* wip

* wip

* minimal example test

* wip

* instance group example

* neg examples

* example tests

* tfdoc

* readme

* tested

* example

* default urlmap value, remove stale variable

* tests
  • Loading branch information
ludoo committed Nov 14, 2022
1 parent 9292661 commit 40a37e9
Show file tree
Hide file tree
Showing 27 changed files with 2,273 additions and 1,930 deletions.
681 changes: 395 additions & 286 deletions modules/net-ilb-l7/README.md

Large diffs are not rendered by default.

227 changes: 227 additions & 0 deletions modules/net-ilb-l7/backend-service.tf
@@ -0,0 +1,227 @@
/**
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

# tfdoc:file:description Backend service resources.

locals {
group_ids = merge(
{
for k, v in google_compute_instance_group.default : k => v.id
},
{
for k, v in google_compute_network_endpoint_group.default : k => v.id
}
)
hc_ids = {
for k, v in google_compute_health_check.default : k => v.id
}
}

resource "google_compute_region_backend_service" "default" {
provider = google-beta
for_each = var.backend_service_configs
project = var.project_id
region = var.region
name = "${var.name}-${each.key}"
description = var.description
affinity_cookie_ttl_sec = each.value.affinity_cookie_ttl_sec
connection_draining_timeout_sec = each.value.connection_draining_timeout_sec
health_checks = [
for k in each.value.health_checks : lookup(local.hc_ids, k, k)
] # not for internet / serverless NEGs
locality_lb_policy = each.value.locality_lb_policy
load_balancing_scheme = "INTERNAL_MANAGED"
port_name = each.value.port_name # defaults to http, not for NEGs
protocol = (
each.value.protocol == null ? var.protocol : each.value.protocol
)
session_affinity = each.value.session_affinity
timeout_sec = each.value.timeout_sec

dynamic "backend" {
for_each = { for b in coalesce(each.value.backends, []) : b.group => b }
content {
group = lookup(local.group_ids, backend.key, backend.key)
balancing_mode = backend.value.balancing_mode
capacity_scaler = backend.value.capacity_scaler
description = backend.value.description
failover = backend.value.failover
max_connections = try(
backend.value.max_connections.per_group, null
)
max_connections_per_endpoint = try(
backend.value.max_connections.per_endpoint, null
)
max_connections_per_instance = try(
backend.value.max_connections.per_instance, null
)
max_rate = try(
backend.value.max_rate.per_group, null
)
max_rate_per_endpoint = try(
backend.value.max_rate.per_endpoint, null
)
max_rate_per_instance = try(
backend.value.max_rate.per_instance, null
)
max_utilization = backend.value.max_utilization
}
}

dynamic "circuit_breakers" {
for_each = (
each.value.circuit_breakers == null ? [] : [each.value.circuit_breakers]
)
iterator = cb
content {
max_connections = cb.value.max_connections
max_pending_requests = cb.value.max_pending_requests
max_requests = cb.value.max_requests
max_requests_per_connection = cb.value.max_requests_per_connection
max_retries = cb.value.max_retries
dynamic "connect_timeout" {
for_each = (
cb.value.connect_timeout == null ? [] : [cb.value.connect_timeout]
)
content {
seconds = connect_timeout.value.seconds
nanos = connect_timeout.value.nanos
}
}
}
}

dynamic "connection_tracking_policy" {
for_each = (
each.value.connection_tracking == null
? []
: [each.value.connection_tracking]
)
iterator = cb
content {
connection_persistence_on_unhealthy_backends = (
cb.value.persist_conn_on_unhealthy != null
? cb.value.persist_conn_on_unhealthy
: null
)
idle_timeout_sec = cb.value.idle_timeout_sec
tracking_mode = (
cb.value.track_per_session != null
? cb.value.track_per_session
: null
)
}
}

dynamic "consistent_hash" {
for_each = (
each.value.consistent_hash == null ? [] : [each.value.consistent_hash]
)
iterator = ch
content {
http_header_name = ch.value.http_header_name
minimum_ring_size = ch.value.minimum_ring_size
dynamic "http_cookie" {
for_each = ch.value.http_cookie == null ? [] : [ch.value.http_cookie]
content {
name = http_cookie.value.name
path = http_cookie.value.path
dynamic "ttl" {
for_each = (
http_cookie.value.ttl == null ? [] : [http_cookie.value.ttl]
)
content {
seconds = ttl.value.seconds
nanos = ttl.value.nanos
}
}
}
}
}
}

dynamic "failover_policy" {
for_each = (
each.value.failover_config == null ? [] : [each.value.failover_config]
)
iterator = fc
content {
disable_connection_drain_on_failover = fc.value.disable_conn_drain
drop_traffic_if_unhealthy = fc.value.drop_traffic_if_unhealthy
failover_ratio = fc.value.ratio
}
}

dynamic "iap" {
for_each = each.value.iap_config == null ? [] : [each.value.iap_config]
content {
oauth2_client_id = iap.value.oauth2_client_id
oauth2_client_secret = iap.value.oauth2_client_secret
oauth2_client_secret_sha256 = iap.value.oauth2_client_secret_sha256
}
}

dynamic "log_config" {
for_each = each.value.log_sample_rate == null ? [] : [""]
content {
enable = true
sample_rate = each.value.log_sample_rate
}
}

dynamic "outlier_detection" {
for_each = (
each.value.outlier_detection == null ? [] : [each.value.outlier_detection]
)
iterator = od
content {
consecutive_errors = od.value.consecutive_errors
consecutive_gateway_failure = od.value.consecutive_gateway_failure
enforcing_consecutive_errors = od.value.enforcing_consecutive_errors
enforcing_consecutive_gateway_failure = od.value.enforcing_consecutive_gateway_failure
enforcing_success_rate = od.value.enforcing_success_rate
max_ejection_percent = od.value.max_ejection_percent
success_rate_minimum_hosts = od.value.success_rate_minimum_hosts
success_rate_request_volume = od.value.success_rate_request_volume
success_rate_stdev_factor = od.value.success_rate_stdev_factor
dynamic "base_ejection_time" {
for_each = (
od.value.base_ejection_time == null ? [] : [od.value.base_ejection_time]
)
content {
seconds = base_ejection_time.value.seconds
nanos = base_ejection_time.value.nanos
}
}
dynamic "interval" {
for_each = (
od.value.interval == null ? [] : [od.value.interval]
)
content {
seconds = interval.value.seconds
nanos = interval.value.nanos
}
}
}
}

dynamic "subsetting" {
for_each = each.value.enable_subsetting == true ? [""] : []
content {
policy = "CONSISTENT_HASH_SUBSETTING"
}
}
}
133 changes: 0 additions & 133 deletions modules/net-ilb-l7/backend-services.tf

This file was deleted.

0 comments on commit 40a37e9

Please sign in to comment.