import type { SecretSpec } from '../schemas/SecretSpec'; export interface SecretFileSpec extends SecretSpec { /** * Identifier of the secret manager used to manage the secret */ secret_manager_identifier: string; /** * This specifies the type of secret */ type: 'SecretFile'; }