You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/agent/config/default_oss.go

14 lines
307 B

// +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: ``,
}
}