ODD Platform
  • Overview
  • Architecture
  • ODDRN
  • Features
  • Use cases
    • Data compliance for Data Scientists
    • Deprecation for Data Engineer \ Analyst
    • Visibility for Data Quality Engineer
    • Data preparation for Visualization Engineer
    • Service Provider and Pre-Sales
  • Configuration and Deployment
    • Try locally
    • Deploy to Amazon Elastic Kubernetes Service (EKS)
    • Configure ODD Platform
    • Enable security
      • Authentication
        • Disabled authentication
        • Login form
        • OAUTH2/OIDC
        • LDAP
      • Authorization
        • Policies
        • Permissions
        • Roles
        • Owners
        • User-owner association
  • Developer Guides
    • API Reference
    • How to contribute
    • GitHub organization overview
    • Build and run
      • Build and run ODD Platform
      • Build and run ODD Collectors
Powered by GitBook
On this page
Edit on GitHub
  1. Configuration and Deployment
  2. Enable security
  3. Authentication

Login form

This is the simplest form of authentication provided by ODD Platform.

User credentials can be set by defining auth.login-form-credentials variable in the following format: username1:password1,username2:password2.

Default value is admin:admin,root:root, hence by default ODD Platform will be able to authenticate 2 users with usernames admin and root and passwords admin and root respectively.

All users will have ADMIN priviligies in platform.

auth:
    type: LOGIN_FORM
    login-form-credentials: susan:susan_password,dave:dave_password
AUTH_TYPE=LOGIN_FORM
AUTH_LOGIN-FORM-CREDENTIALS=susan:susan_password,dave:dave_password

We don't recommend to use LOGIN_FORM authentication mechanism in production!

PreviousDisabled authenticationNextOAUTH2/OIDC

Last updated 2 years ago