6a5eba63ab
* Implements a simple, tcp ingress gateway workflow This adds a new type of gateway for allowing Ingress traffic into Connect from external services. Co-authored-by: Chris Piraino <cpiraino@hashicorp.com>
21 lines
298 B
HCL
21 lines
298 B
HCL
enable_central_service_config = true
|
|
|
|
config_entries {
|
|
bootstrap {
|
|
kind = "ingress-gateway"
|
|
name = "ingress-gateway"
|
|
|
|
listeners = [
|
|
{
|
|
port = 9999
|
|
protocol = "tcp"
|
|
services = [
|
|
{
|
|
name = "s1"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|