Change token/role names

This commit is contained in:
Alex Dadgar
2016-08-08 15:28:25 -07:00
parent f7f86941a3
commit 2c1fd77dfd
5 changed files with 22 additions and 22 deletions

View File

@@ -655,15 +655,15 @@ func parseVaultConfig(result **config.VaultConfig, list *ast.ObjectList) error {
valid := []string{
"address",
"allow_unauthenticated",
"child_token_ttl",
"periodic_token",
"tls_ca_file",
"tls_ca_path",
"tls_cert_file",
"child_token_ttl",
"tls_key_file",
"role_name",
"role_token",
"tls_server_name",
"tls_skip_verify",
"token_role_name",
}
if err := checkHCLKeys(listVal, valid); err != nil {