2019-12-09 21:26:41 -05:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package config
|
|
|
|
|
2020-12-21 12:36:38 -05:00
|
|
|
var testRuntimeConfigSanitizeExpectedFilename = "TestRuntimeConfig_Sanitize.golden"
|
2019-12-18 10:16:35 -05:00
|
|
|
|
2020-08-27 13:15:10 -04:00
|
|
|
func entFullRuntimeConfig(rt *RuntimeConfig) {}
|
2020-04-28 09:45:33 -04:00
|
|
|
|
2020-11-20 17:43:32 -05:00
|
|
|
var enterpriseReadReplicaWarnings = []string{enterpriseConfigKeyError{key: "read_replica (or the deprecated non_voting_server)"}.Error()}
|
|
|
|
|
|
|
|
var enterpriseConfigKeyWarnings = []string{
|
2021-05-10 10:10:39 -04:00
|
|
|
enterpriseConfigKeyError{key: "license_path"}.Error(),
|
2020-11-20 17:43:32 -05:00
|
|
|
enterpriseConfigKeyError{key: "read_replica (or the deprecated non_voting_server)"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "autopilot.redundancy_zone_tag"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "autopilot.upgrade_version_tag"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "autopilot.disable_upgrade_migration"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "dns_config.prefer_namespace"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "acl.msp_disable_bootstrap"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "acl.tokens.managed_service_provider"}.Error(),
|
|
|
|
enterpriseConfigKeyError{key: "audit"}.Error(),
|
2020-04-28 09:45:33 -04:00
|
|
|
}
|