Skip to content

Package

nautobot_secrets_providers

App declaration for nautobot_secrets_providers.

NautobotSecretsProvidersConfig

Bases: NautobotAppConfig

App configuration for the nautobot_secrets_providers app.

Source code in nautobot_secrets_providers/__init__.py
class NautobotSecretsProvidersConfig(NautobotAppConfig):
    """App configuration for the nautobot_secrets_providers app."""

    name = "nautobot_secrets_providers"
    verbose_name = "Secrets Providers"
    version = __version__
    author = "Network to Code, LLC"
    description = "Nautobot App that provides direct integrations with Enterprise secrets management systems. Provides patterns to securely fetch secrets for use by other Nautobot Apps and Nautobot Jobs."
    base_url = "secrets-providers"
    required_settings = []
    min_version = "2.0.0"
    max_version = "2.9999"
    default_settings = {}
    caching_config = {}
    docs_view_name = "plugins:nautobot_secrets_providers:docs"

    # URL reverse lookup names
    home_view_name = "plugins:nautobot_secrets_providers:home"