transform secret

Signed-off-by: Richard Jones <richard@dagger.io>
This commit is contained in:
Richard Jones 2022-01-04 20:27:54 -07:00
parent 447307b3be
commit 86bf3bad86
No known key found for this signature in database
GPG Key ID: CFB3A382EB166F4C
2 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1,17 @@
package engine
// Securely apply a CUE transformation on the contents of a secret
#TransformSecret: {
$dagger: task: _name: "TransformSecret"
// The original secret
input: #Secret
// A new secret with the transformation applied
output: #Secret
// Transformation function
#function: {
// Full contents of the input secret (only available to the function)
input: string
// New contents of the output secret (must provided by the caller)
output: string
}
}

View File

@ -0,0 +1,47 @@
package task
import (
"context"
"errors"
"cuelang.org/go/cue"
"github.com/rs/zerolog/log"
"go.dagger.io/dagger/compiler"
"go.dagger.io/dagger/plancontext"
"go.dagger.io/dagger/solver"
)
func init() {
Register("TransformSecret", func() Task { return &transformSecretTask{} })
}
type transformSecretTask struct {
}
func (c *transformSecretTask) Run(ctx context.Context, pctx *plancontext.Context, _ solver.Solver, v *compiler.Value) (*compiler.Value, error) {
lg := log.Ctx(ctx)
lg.Debug().Msg("transforming secret")
input := v.Lookup("input")
if !plancontext.IsSecretValue(input) {
return nil, errors.New("#TransformSecret requires input: #Secret")
}
inputSecret, err := pctx.Secrets.FromValue(input)
if err != nil {
return nil, err
}
function := v.Lookup("#function")
function.FillPath(cue.ParsePath("input"), inputSecret.PlainText())
outputPlaintext, err := function.Lookup("output").String()
if err != nil {
return nil, err
}
outputSecret := pctx.Secrets.New(outputPlaintext)
return compiler.NewValue().FillFields(map[string]interface{}{
"output": outputSecret.MarshalCUE(),
})
}