Files
hunfabric/tests/modules/net_lb_proxy_int_cross_region/instance-groups.tfvars
Simone Ruffilli 8adb84c95c Add net-lb-proxy-int-cross-region module and tests (#4017)
* Add net-lb-proxy-int-cross-region module and tests

* Add context support example and tests

* Update copyright to 2026 and support instance group backends

* docs: correct Instance Groups support note in README
2026-06-11 07:56:01 +00:00

27 lines
450 B
HCL

name = "proxy-cr-ig-test"
project_id = "my-project"
vpc_config = {
network = "network"
subnetworks = {
europe-west1 = "subnet-ew1"
europe-west4 = "subnet-ew4"
}
}
group_configs = {
ig-a = {
zone = "europe-west1-b"
instances = [
"projects/my-project/zones/europe-west1-b/instances/vm-a"
]
}
}
backend_service_config = {
backends = [{
group = "ig-a"
balancing_mode = "UTILIZATION"
}]
}