mirror of https://github.com/status-im/consul.git
26 lines
783 B
Go
26 lines
783 B
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
|
||
|
//go:build !consulent
|
||
|
// +build !consulent
|
||
|
|
||
|
package xds
|
||
|
|
||
|
import (
|
||
|
envoy_http_jwt_authn_v3 "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/jwt_authn/v3"
|
||
|
envoy_http_v3 "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
|
||
|
|
||
|
"github.com/hashicorp/consul/agent/structs"
|
||
|
)
|
||
|
|
||
|
type GatewayAuthFilterBuilder struct {
|
||
|
listener structs.APIGatewayListener
|
||
|
route *structs.HTTPRouteConfigEntry
|
||
|
providers map[string]*structs.JWTProviderConfigEntry
|
||
|
envoyProviders map[string]*envoy_http_jwt_authn_v3.JwtProvider
|
||
|
}
|
||
|
|
||
|
func (g *GatewayAuthFilterBuilder) makeGatewayAuthFilters() ([]*envoy_http_v3.HttpFilter, error) {
|
||
|
return nil, nil
|
||
|
}
|