Files
hunfabric/tests/modules/net_lb_app_int_cross_region/health-checks-https.tfvars
2025-11-26 15:20:08 +01:00

32 lines
817 B
HCL

name = "hc-test-0"
project_id = "my-project"
backend_service_configs = {
default = {
backends = [{
group = "projects/myprj/zones/europe-west1-a/instanceGroups/my-ig-ew1"
}, {
group = "projects/myprj/zones/europe-west4-a/instanceGroups/my-ig-ew4"
}]
}
}
vpc_config = {
network = "network"
subnetworks = {
europe-west1 = "subnet-ew1"
europe-west4 = "subnet-ew4"
}
}
health_check_configs = {
https = {
https = {
host = "https_host"
port = 4123
port_name = "https_port_name"
port_specification = "USE_FIXED_PORT" # USE_FIXED_PORT USE_NAMED_PORT USE_SERVING_PORT
proxy_header = "PROXY_V1"
request_path = "https_request_path"
response = "https_response"
}
}
}