Tls Route Route Match Args
data class TlsRouteRouteMatchArgs(val alpn: Output<List<String>>? = null, val sniHost: Output<List<String>>? = null) : ConvertibleToJava<TlsRouteRouteMatchArgs>
RouteMatch defines the predicate used to match requests to a given action. Multiple match types are "AND"ed for evaluation. If no routeMatch field is specified, this rule will unconditionally match traffic.
Constructors
Link copied to clipboard
fun TlsRouteRouteMatchArgs(alpn: Output<List<String>>? = null, sniHost: Output<List<String>>? = null)
Functions
Properties
Link copied to clipboard
Optional. SNI (server name indicator) to match against. SNI will be matched against all wildcard domains, i.e. www.example.com
will be first matched against www.example.com
, then *.example.com
, then *.com.
Partial wildcards are not supported, and values like *w.example.com are invalid. At least one of sni_host and alpn is required. Up to 5 sni hosts across all matches can be set.