23 lines
568 B
HCL
23 lines
568 B
HCL
project_id = "my-project"
|
|
region = "europe-west1"
|
|
name = "ilb-test"
|
|
vpc_config = {
|
|
network = "default"
|
|
subnetwork = "default"
|
|
}
|
|
backends = [{
|
|
group = "foo"
|
|
failover = false
|
|
}]
|
|
health_check_config = {
|
|
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"
|
|
}
|
|
}
|