Syntax
Parameters
Example
See also
Manage secrets
A comprehensive guide for secret management operations
CREATE SECRET
Create a secret
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use the ALTER SECRET command to alter the secrets that store sensitive credentials.
ALTER SECRET secret_name WITH (
backend = 'meta'
) AS 'your_new_secret';
| Parameter or Clause | Description |
|---|---|
secret_name | The name of the secret to be altered. |
backend | The backend where the secret is stored. Currently, only the meta backend is supported. |
your_new_secret | The new secret value that you wish to store securely. |
ALTER SECRET mysql_pwd WITH (
backend = 'meta'
) AS 'new_password';
Was this page helpful?