2019-05-01 15:11:27 +00:00
|
|
|
// +build !consulent
|
2018-02-05 21:25:28 +00:00
|
|
|
|
|
|
|
package config
|
|
|
|
|
|
|
|
// DefaultEnterpriseSource returns the consul agent configuration for the enterprise mode.
|
|
|
|
// This should be merged in the tail after the DefaultConsulSource.
|
|
|
|
func DefaultEnterpriseSource() Source {
|
|
|
|
return Source{
|
|
|
|
Name: "enterprise",
|
|
|
|
Format: "hcl",
|
|
|
|
Data: ``,
|
|
|
|
}
|
|
|
|
}
|