Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add auth_methods module to support AppRole #637

Merged
merged 4 commits into from
Oct 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion hvac/api/auth_methods/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import warnings

from hvac.api.auth_methods.approle import AppRole
from hvac.api.auth_methods.azure import Azure
from hvac.api.auth_methods.gcp import Gcp
from hvac.api.auth_methods.github import Github
Expand All @@ -19,6 +20,7 @@

__all__ = (
'AuthMethods',
'AppRole',
'Azure',
'Gcp',
'Github',
Expand All @@ -37,6 +39,7 @@
class AuthMethods(VaultApiCategory):
"""Auth Methods."""
implemented_classes = [
AppRole,
Azure,
Github,
Gcp,
Expand All @@ -52,7 +55,6 @@ class AuthMethods(VaultApiCategory):
]
unimplemented_classes = [
'AppId',
'AppRole',
'AliCloud',
'Cert',
'Token',
Expand Down