@runloop/api-client - v1.4.0
    Preparing search index...

    Interface SecretCreateParameters

    Parameters required to create a new Secret.

    interface SecretCreateParameters {
        name: string;
        value: string;
    }
    Index

    Properties

    Properties

    name: string

    The globally unique name for the Secret. Must be a valid environment variable name (alphanumeric and underscores only). Example: 'DATABASE_PASSWORD'

    value: string

    The value to store for this Secret. This will be encrypted at rest and made available as an environment variable in Devboxes. Example: 'my-secure-password'