2017-10-11 17:21:20 +00:00
|
|
|
package vault
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
2019-04-12 21:54:35 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/framework"
|
2019-04-13 07:44:06 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/logical"
|
2017-10-11 17:21:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func upgradePaths(i *IdentityStore) []*framework.Path {
|
|
|
|
return []*framework.Path{
|
|
|
|
{
|
|
|
|
Pattern: "persona$",
|
|
|
|
Fields: map[string]*framework.FieldSchema{
|
|
|
|
"id": {
|
|
|
|
Type: framework.TypeString,
|
2018-07-25 02:01:58 +00:00
|
|
|
Description: "ID of the persona",
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
"entity_id": {
|
|
|
|
Type: framework.TypeString,
|
2018-07-25 02:01:58 +00:00
|
|
|
Description: "Entity ID to which this persona belongs to",
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
"mount_accessor": {
|
|
|
|
Type: framework.TypeString,
|
2018-07-25 02:01:58 +00:00
|
|
|
Description: "Mount accessor to which this persona belongs to",
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
Type: framework.TypeString,
|
2018-07-25 02:01:58 +00:00
|
|
|
Description: "Name of the persona",
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
"metadata": {
|
2017-11-14 01:59:42 +00:00
|
|
|
Type: framework.TypeKVPairs,
|
2018-07-25 02:01:58 +00:00
|
|
|
Description: `Metadata to be associated with the persona.
|
2017-11-14 01:59:42 +00:00
|
|
|
In CLI, this parameter can be repeated multiple times, and it all gets merged together.
|
|
|
|
For example:
|
|
|
|
vault <command> <path> metadata=key1=value1 metadata=key2=value2
|
|
|
|
`,
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Callbacks: map[logical.Operation]framework.OperationFunc{
|
2018-07-25 02:01:58 +00:00
|
|
|
logical.UpdateOperation: i.handleEntityUpdateCommon(),
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
HelpSynopsis: strings.TrimSpace(aliasHelp["alias"][0]),
|
|
|
|
HelpDescription: strings.TrimSpace(aliasHelp["alias"][1]),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Pattern: "persona/id/" + framework.GenericNameRegex("id"),
|
|
|
|
Fields: map[string]*framework.FieldSchema{
|
|
|
|
"id": {
|
|
|
|
Type: framework.TypeString,
|
2018-07-25 02:01:58 +00:00
|
|
|
Description: "ID of the persona",
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
"entity_id": {
|
|
|
|
Type: framework.TypeString,
|
2018-07-25 02:01:58 +00:00
|
|
|
Description: "Entity ID to which this persona should be tied to",
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
"mount_accessor": {
|
|
|
|
Type: framework.TypeString,
|
2018-07-25 02:01:58 +00:00
|
|
|
Description: "Mount accessor to which this persona belongs to",
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
Type: framework.TypeString,
|
2018-07-25 02:01:58 +00:00
|
|
|
Description: "Name of the persona",
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
"metadata": {
|
2017-11-14 01:59:42 +00:00
|
|
|
Type: framework.TypeKVPairs,
|
2018-07-25 02:01:58 +00:00
|
|
|
Description: `Metadata to be associated with the persona.
|
2017-11-14 01:59:42 +00:00
|
|
|
In CLI, this parameter can be repeated multiple times, and it all gets merged together.
|
|
|
|
For example:
|
|
|
|
vault <command> <path> metadata=key1=value1 metadata=key2=value2
|
|
|
|
`,
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Callbacks: map[logical.Operation]framework.OperationFunc{
|
2018-07-25 02:01:58 +00:00
|
|
|
logical.UpdateOperation: i.handleEntityUpdateCommon(),
|
2018-01-08 18:31:38 +00:00
|
|
|
logical.ReadOperation: i.pathAliasIDRead(),
|
|
|
|
logical.DeleteOperation: i.pathAliasIDDelete(),
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
HelpSynopsis: strings.TrimSpace(aliasHelp["alias-id"][0]),
|
|
|
|
HelpDescription: strings.TrimSpace(aliasHelp["alias-id"][1]),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Pattern: "persona/id/?$",
|
|
|
|
Callbacks: map[logical.Operation]framework.OperationFunc{
|
2018-01-08 18:31:38 +00:00
|
|
|
logical.ListOperation: i.pathAliasIDList(),
|
2017-10-11 17:21:20 +00:00
|
|
|
},
|
|
|
|
|
2017-11-14 01:59:42 +00:00
|
|
|
HelpSynopsis: strings.TrimSpace(aliasHelp["alias-id-list"][0]),
|
|
|
|
HelpDescription: strings.TrimSpace(aliasHelp["alias-id-list"][1]),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Pattern: "alias$",
|
|
|
|
Fields: map[string]*framework.FieldSchema{
|
|
|
|
"id": {
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "ID of the alias",
|
|
|
|
},
|
|
|
|
"entity_id": {
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Entity ID to which this alias belongs to. This field is deprecated in favor of 'canonical_id'.",
|
|
|
|
},
|
|
|
|
"canonical_id": {
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Entity ID to which this alias belongs to",
|
|
|
|
},
|
|
|
|
"mount_accessor": {
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Mount accessor to which this alias belongs to",
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Name of the alias",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Callbacks: map[logical.Operation]framework.OperationFunc{
|
2018-07-25 02:01:58 +00:00
|
|
|
logical.UpdateOperation: i.handleAliasUpdateCommon(),
|
2017-11-14 01:59:42 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
HelpSynopsis: strings.TrimSpace(aliasHelp["alias"][0]),
|
|
|
|
HelpDescription: strings.TrimSpace(aliasHelp["alias"][1]),
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
Pattern: "alias/id/" + framework.GenericNameRegex("id"),
|
|
|
|
Fields: map[string]*framework.FieldSchema{
|
|
|
|
"id": {
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "ID of the alias",
|
|
|
|
},
|
|
|
|
"entity_id": {
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Entity ID to which this alias should be tied to. This field is deprecated in favor of 'canonical_id'.",
|
|
|
|
},
|
|
|
|
"canonical_id": {
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Entity ID to which this alias should be tied to",
|
|
|
|
},
|
|
|
|
"mount_accessor": {
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Mount accessor to which this alias belongs to",
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
Type: framework.TypeString,
|
|
|
|
Description: "Name of the alias",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Callbacks: map[logical.Operation]framework.OperationFunc{
|
2018-07-25 02:01:58 +00:00
|
|
|
logical.UpdateOperation: i.handleAliasUpdateCommon(),
|
2018-01-08 18:31:38 +00:00
|
|
|
logical.ReadOperation: i.pathAliasIDRead(),
|
|
|
|
logical.DeleteOperation: i.pathAliasIDDelete(),
|
2017-11-14 01:59:42 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
HelpSynopsis: strings.TrimSpace(aliasHelp["alias-id"][0]),
|
|
|
|
HelpDescription: strings.TrimSpace(aliasHelp["alias-id"][1]),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Pattern: "alias/id/?$",
|
|
|
|
Callbacks: map[logical.Operation]framework.OperationFunc{
|
2018-01-08 18:31:38 +00:00
|
|
|
logical.ListOperation: i.pathAliasIDList(),
|
2017-11-14 01:59:42 +00:00
|
|
|
},
|
|
|
|
|
2017-10-11 17:21:20 +00:00
|
|
|
HelpSynopsis: strings.TrimSpace(aliasHelp["alias-id-list"][0]),
|
|
|
|
HelpDescription: strings.TrimSpace(aliasHelp["alias-id-list"][1]),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|