open-consul/agent/config/default_oss.go

14 lines
307 B
Go
Raw Normal View History

2018-02-05 21:25:28 +00:00
// +build !ent
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: ``,
}
}