diff --git a/test/integration/connect/envoy/case-ingress-gateway-tls/config_entries.hcl b/test/integration/connect/envoy/case-ingress-gateway-tls/config_entries.hcl index ff456c0d7d..9a24876301 100644 --- a/test/integration/connect/envoy/case-ingress-gateway-tls/config_entries.hcl +++ b/test/integration/connect/envoy/case-ingress-gateway-tls/config_entries.hcl @@ -1,25 +1,34 @@ enable_central_service_config = true config_entries { - bootstrap { - kind = "ingress-gateway" - name = "ingress-gateway" - - tls { - enabled = true - } - - listeners = [ - { - port = 9999 + bootstrap = [ + { + kind = "proxy-defaults" + name = "global" + config { protocol = "http" - services = [ - { - name = "s1" - hosts = ["test.example.com"] - } - ] } - ] - } + }, + { + kind = "ingress-gateway" + name = "ingress-gateway" + + tls { + enabled = true + } + + listeners = [ + { + port = 9999 + protocol = "http" + services = [ + { + name = "s1" + hosts = ["test.example.com"] + } + ] + } + ] + } + ] }