-
Notifications
You must be signed in to change notification settings - Fork 34
Add Akeyless Secret Store/SSH Plugin #147
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
Open
kgal-akl
wants to merge
12
commits into
ansible:devel
Choose a base branch
from
akeyless-community:add-akeyless-credential
base: devel
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
e10452b
init
kgal-akl e932273
fix precommit
kgal-akl 5124a2d
fix build docs
kgal-akl 84f425d
fix precommit
kgal-akl be2e93e
fix build docs
kgal-akl 98271f6
Merge branch 'devel' into add-akeyless-credential
kgal-akl 0858c70
pr review fixes
kgal-akl 2ee9014
fix precommit ci
kgal-akl 3179884
pr review fixes
kgal-akl ae8022e
fix doc build, ignore akeyless sdk types
kgal-akl 8a841d9
Merge branch 'devel' into add-akeyless-credential
kgal-akl be51719
review fixes
kgal-akl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -328,3 +328,4 @@ pip-selfcheck.json | |
|
|
||
| # lockfile scripts | ||
| !/bin/ | ||
| .python-version | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| from collections.abc import Mapping | ||
|
|
||
| class Configuration: | ||
| host: str | ||
| ssl_ca_cert: str | None | ||
| verify_ssl: bool | ||
| def __init__(self, host: str = ...) -> None: ... | ||
|
|
||
| class ApiClient: | ||
| user_agent: str | ||
| default_headers: dict[str, str] | ||
| def __init__(self, configuration: Configuration | None = ...) -> None: ... | ||
|
|
||
| class Auth: | ||
| access_id: str | ||
| access_key: str | ||
| def __init__( | ||
| self, | ||
| *, | ||
| access_id: str = ..., | ||
| access_key: str = ..., | ||
| ) -> None: ... | ||
|
|
||
| class AuthOutput: | ||
| token: str | None | ||
|
|
||
| class StaticSecretInfo: | ||
| format: str | ||
|
|
||
| class ItemGeneralInfo: | ||
| static_secret_info: StaticSecretInfo | ||
|
|
||
| class DescribeItemOutput: | ||
| item_type: str | ||
| item_sub_type: str | ||
| item_general_info: ItemGeneralInfo | ||
|
|
||
| class DescribeItem: | ||
| name: str | ||
| token: str | ||
| def __init__( | ||
| self, | ||
| *, | ||
| name: str = ..., | ||
| token: str = ..., | ||
| ) -> None: ... | ||
|
|
||
| class GetSecretValue: | ||
| names: list[str] | ||
| token: str | ||
| def __init__( | ||
| self, | ||
| *, | ||
| names: list[str] = ..., | ||
| token: str = ..., | ||
| ) -> None: ... | ||
|
|
||
| class GetSSHCertificateOutput: | ||
| data: str | None | ||
|
|
||
| class V2Api: | ||
| def __init__(self, api_client: ApiClient | None = ...) -> None: ... | ||
| def auth(self, auth: Auth) -> AuthOutput: ... | ||
| def describe_item(self, req: DescribeItem) -> DescribeItemOutput: ... | ||
| def get_secret_value( | ||
| self, | ||
| req: GetSecretValue, | ||
| ) -> Mapping[str, str]: ... | ||
| def get_ssh_certificate( | ||
| self, | ||
| req: object, | ||
| ) -> GetSSHCertificateOutput: ... |
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| class GetSSHCertificate: | ||
| token: str | ||
| cert_issuer_name: str | ||
| cert_username: str | ||
| ttl: int | None | ||
| public_key_data: str | ||
| def __init__( | ||
| self, | ||
| *, | ||
| token: str = ..., | ||
| cert_issuer_name: str = ..., | ||
| cert_username: str = ..., | ||
| ttl: int | None = ..., | ||
| public_key_data: str = ..., | ||
| ) -> None: ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| class ApiException(Exception): # noqa: N818 | ||
| status: int | ||
| reason: str | ||
| def __init__( | ||
| self, | ||
| status: int = ..., | ||
| reason: str = ..., | ||
| http_resp: object | None = ..., | ||
| ) -> None: ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| Akeyless | ||
| Ansible | ||
| Approle | ||
| async | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.