Go - NewSecret()
Creates a reference to a secret in the secrets manager.
import ("github.com/nitrictech/go-sdk/nitric""github.com/nitrictech/go-sdk/nitric/secrets")func main() {secret := nitric.NewSecret("secret-name").Allow(secrets.SecretPut, secrets.SecretAccess)nitric.Run()}
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 about infrastructure security.
Available permissions:
SecretPut
This permission allows your code to set a new latest value for a secret.
SecretAccess
This permission allows your code to retrieve secret values.
Examples
Create a reference to a secret
import ("github.com/nitrictech/go-sdk/nitric""github.com/nitrictech/go-sdk/nitric/secrets")func main() {secret := nitric.NewSecret("secret-name").Allow(secrets.SecretPut, secrets.SecretAccess)nitric.Run()}
See also
Last updated on Oct 22, 2024