package rabbitmq import ( "fmt" "github.com/hashicorp/vault/logical" "github.com/hashicorp/vault/logical/framework" ) // SecretCredsType is the key for this backend's secrets. const SecretCredsType = "creds" func secretCreds(b *backend) *framework.Secret { return &framework.Secret{ Type: SecretCredsType, Fields: map[string]*framework.FieldSchema{ "username": &framework.FieldSchema{ Type: framework.TypeString, Description: "RabbitMQ username", }, "password": &framework.FieldSchema{ Type: framework.TypeString, Description: "Password for the RabbitMQ username", }, }, Renew: b.secretCredsRenew, Revoke: b.secretCredsRevoke, } } // Renew the previously issued secret func (b *backend) secretCredsRenew( req *logical.Request, d *framework.FieldData) (*logical.Response, error) { // Get the lease information lease, err := b.Lease(req.Storage) if err != nil { return nil, err } if lease == nil { lease = &configLease{} } return framework.LeaseExtend(lease.TTL, lease.MaxTTL, b.System())(req, d) } // Revoke the previously issued secret func (b *backend) secretCredsRevoke( req *logical.Request, d *framework.FieldData) (*logical.Response, error) { // Get the username from the internal data usernameRaw, ok := req.Secret.InternalData["username"] if !ok { return nil, fmt.Errorf("secret is missing username internal data") } username := usernameRaw.(string) // Get our connection client, err := b.Client(req.Storage) if err != nil { return nil, err } if _, err = client.DeleteUser(username); err != nil { return nil, fmt.Errorf("could not delete user: %s", err) } return nil, nil }