You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/server/public_ids.go

33 lines
952 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package server
import (
"context"
"github.com/hashicorp/boundary/globals"
"github.com/hashicorp/boundary/internal/db"
"github.com/hashicorp/boundary/internal/errors"
)
func newWorkerId(ctx context.Context) (string, error) {
id, err := db.NewPublicId(ctx, globals.WorkerPrefix)
if err != nil {
return "", errors.Wrap(ctx, err, "server.newWorkerId")
}
return id, nil
}
// NewWorkerIdFromScopeAndName generates a predictable public id based on the
// scope and the worker name. This should only be used on kms workers at
// upsert time.
func NewWorkerIdFromScopeAndName(ctx context.Context, scope, name string) (string, error) {
const op = "server.NewWorkerIdFromScopeAndName"
id, err := db.NewPublicId(ctx, globals.WorkerPrefix, db.WithPrngValues([]string{scope, name}))
if err != nil {
return "", errors.Wrap(ctx, err, "server.newWorkerId")
}
return id, nil
}