mirror of https://github.com/hashicorp/consul
12 lines
251 B
Go
12 lines
251 B
Go
|
package proxysupport
|
||
|
|
||
|
// EnvoyVersions lists the latest officially supported versions of envoy.
|
||
|
//
|
||
|
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
|
||
|
var EnvoyVersions = []string{
|
||
|
"1.15.0",
|
||
|
"1.14.4",
|
||
|
"1.13.4",
|
||
|
"1.12.6",
|
||
|
}
|