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

Adds krb5 credential example into OSP.xml #1024

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/OSP.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ SPDX-License-Identifier: GPL-2.0-or-later
<e>auth_algorithm</e>
<e>privacy_password</e>
<e>privacy_algorithm</e>
<e>realm</e>
<e>kdc</e>
</pattern>
<ele>
<name>username</name>
Expand Down Expand Up @@ -130,6 +132,14 @@ SPDX-License-Identifier: GPL-2.0-or-later
<name>privacy_algorithm</name>
<pattern>text</pattern>
</ele>
<ele>
<name>realm</name>
<pattern>text</pattern>
</ele>
<ele>
<name>kdc</name>
<pattern>text</pattern>
</ele>
<example>
<summary>SSH Credential with username + password authentication and port</summary>
<e>
Expand Down Expand Up @@ -182,6 +192,17 @@ SPDX-License-Identifier: GPL-2.0-or-later
</credential>
</e>
</example>
<example>
<summary>Kerberos Credentials. The kdc value is only used when no matching realm was found.</summary>
<e>
<credential type="up" service="krb5">
<username>krb5user</username>
<password>mypass</password>
<realm>myrealm</realm>
<kdc>mykdc</kdc>
</credential>
</e>
</example>
</element>

<element>
Expand Down
Loading