File: approle.py

package info (click to toggle)
python-hvac 2.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,800 kB
  • sloc: python: 29,360; makefile: 42; sh: 14
file content (11 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
"""Constants related to the APPROLE auth method."""

DEFAULT_MOUNT_POINT = "approle"
ALLOWED_TOKEN_TYPES = [
    "service",
    "batch",
    "default",
    "default-service",
    "default-batch",
]