diff options
author | Niall Sheridan <niall@intercom.io> | 2016-04-21 13:35:22 +0100 |
---|---|---|
committer | Niall Sheridan <niall@intercom.io> | 2016-04-21 13:35:22 +0100 |
commit | eb7357b2622942ced3cedf48e796af4dda157576 (patch) | |
tree | 8cd5bb8c3f4c8c5c9892285eb3a8994d82d08a16 /server/config | |
parent | dc4ec50664392f30354b9f300b55a8d02ec94737 (diff) |
use correct config parameter
Diffstat (limited to 'server/config')
-rw-r--r-- | server/config/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/config/config.go b/server/config/config.go index b65d171..4011d82 100644 --- a/server/config/config.go +++ b/server/config/config.go @@ -31,7 +31,7 @@ type Auth struct { // SSH holds the configuration specific to signing ssh keys. type SSH struct { SigningKey string `mapstructure:"signing_key"` - Principals []string `mapstructure:"principals"` + Principals []string `mapstructure:"additional_principals"` MaxAge string `mapstructure:"max_age"` Permissions []string `mapstructure:"permissions"` } |