Go is in development for v1. Interested in contributing or chatting with us?Get in touch!
Go - NewSecret()
Creates a reference to a secret in the secrets manager.
import (
"fmt"
"github.com/nitrictech/go-sdk/nitric"
)
func main() {
secret, err := nitric.NewSecret("secret-name").With(nitric.SecretPutting, nitric.SecretAccessing)
if err != nil {
return
}
if err := nitric.Run(); err != nil {
fmt.Println(err)
}
}
Parameters
- Name
name
- Required
- Required
- Type
- string
- Description
The unique name of this secret within the secrets manager. Subsequent calls to
NewSecret
with the same name will return the same object.
Access
All Nitric resources provide access permissions you can use to specify the level of access your code needs to the resource. See here for details Access Control documentation.
Available permissions:
SecretPutting
This permission allows your code to set a new latest value for a secret.
SecretAccessing
This permission allows your code to retrieve secret values.
Examples
Create a reference to a secret
import (
"fmt"
"github.com/nitrictech/go-sdk/nitric"
)
func main() {
secret, err := nitric.NewSecret("secret-name").With(nitric.SecretPutting, nitric.SecretAccessing)
if err != nil {
return
}
if err := nitric.Run(); err != nil {
fmt.Println(err)
}
}