EnvironmentBaseConfig#
- pydantic model phalanx.models.environments.EnvironmentBaseConfig#
Configuration common to EnviromentConfig and Environment.
- Parameters:
data (
Any
) โ
Show JSON schema
{ "title": "EnvironmentBaseConfig", "description": "Configuration common to `EnviromentConfig` and `Environment`.", "type": "object", "properties": { "name": { "title": "Name", "type": "string" }, "fqdn": { "title": "Fqdn", "type": "string" }, "onepassword": { "$ref": "#/definitions/OnepasswordConfig" }, "vaultUrl": { "title": "Vaulturl", "type": "string" }, "vaultPathPrefix": { "title": "Vaultpathprefix", "type": "string" } }, "required": [ "name", "fqdn", "vaultUrl", "vaultPathPrefix" ], "definitions": { "OnepasswordConfig": { "title": "OnepasswordConfig", "description": "Configuration for 1Password static secrets source.", "type": "object", "properties": { "connectUrl": { "title": "Connecturl", "minLength": 1, "maxLength": 65536, "format": "uri", "type": "string" }, "vaultTitle": { "title": "Vaulttitle", "type": "string" } }, "required": [ "connectUrl", "vaultTitle" ] } } }
- Config:
alias_generator: function = <function to_camel_case at 0x7f424c479620>
allow_population_by_field_name: bool = True
- Fields:
- Validators:
_validate_onepassword
ยปonepassword
-
field onepassword:
Optional
[OnepasswordConfig
] = None# Configuration for using 1Password as a static secrets source.
- Validated by:
_validate_onepassword
-
field vault_path_prefix:
str
[Required] (alias 'vaultPathPrefix')# Prefix of Vault paths, including the Kv2 mount point.
- dict(**kwargs)#
Export the model as a dictionary.
Overridden to change the default of
by_alias
from False to True, so that by default the exported dictionary uses camel-case.
- json(**kwargs)#
Export the model as JSON.
Overridden to change the default of
by_alias
from False to True, so that by default the exported dictionary uses camel-case.