SourceSecretGenerateRules#
- pydantic model phalanx.models.secrets.SourceSecretGenerateRules#
- Rules for generating a secret from another secret. - Parameters:
- data ( - Any) –
 - Show JSON schema- { "title": "SourceSecretGenerateRules", "description": "Rules for generating a secret from another secret.", "type": "object", "properties": { "type": { "title": "Type", "enum": [ "bcrypt-password-hash", "mtime" ], "type": "string" }, "source": { "title": "Source", "type": "string" } }, "required": [ "type", "source" ] } - Fields:
- type (Literal[
 
 - 
field source: str[Required]#
- Key of secret on which this secret is based. - This may only be set by secrets of type - bcrypt-password-hashor- mtime.
 - 
field type: Literal[<SecretGenerateType.bcrypt_password_hash: 'bcrypt-password-hash'>,<SecretGenerateType.mtime: 'mtime'>] [Required]#
- Type of secret. 
 - generate(source)#
- Parameters:
- source ( - SecretStr) –
- Return type:
- SecretStr