Making AllowUnauthenticated true by default

This commit is contained in:
Diptanu Choudhury
2016-11-03 14:38:34 -07:00
parent b76261a230
commit ac5f37cf68

View File

@@ -75,6 +75,9 @@ func DefaultVaultConfig() *VaultConfig {
return &VaultConfig{
Addr: "https://vault.service.consul:8200",
ConnectionRetryIntv: DefaultVaultConnectRetryIntv,
AllowUnauthenticated: func(b bool) *bool {
return &b
}(true),
}
}