-
Notifications
You must be signed in to change notification settings - Fork 0
Add OIDC support to domain_join #14
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
JasonN3
wants to merge
12
commits into
main
Choose a base branch
from
oidc
base: main
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
548cdd4
update for OIDC and update some references to OpenVox
JasonN3 6eb63f4
gen readme and fix parameters
JasonN3 9aa9130
update main readme
JasonN3 d6c5b77
fixes
JasonN3 cb5d4ed
update readme
JasonN3 a998a4a
fixes
JasonN3 996135e
add validation
JasonN3 9d0246a
use notify instead of subscribe
JasonN3 a23e357
don't require secret
JasonN3 8d5eab8
ensure enable sssd auth is called even if it's oidc joined
JasonN3 71ef38c
fix syntax
JasonN3 09b07d7
formatting
JasonN3 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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| # Puppet Modules | ||
| # OpenVox Modules | ||
|
|
||
| ## Description | ||
| This is a collection of Puppet modules that I commonly use that make management of various Linux systems easier. | ||
| This is a collection of OpenVox modules that I commonly use that make management of various Linux systems easier. | ||
|
|
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,21 @@ | ||
| [sssd] | ||
| services = nss, pam | ||
| domains = <%= @currdomain.upcase %> | ||
|
|
||
| [domain/<%= @currdomain.upcase %>] | ||
| id_provider = idp | ||
| idp_type = entra_id | ||
| idp_client_id = <%= @client_id %> | ||
| <% if @client_secret -%> | ||
| idp_client_secret = <%= @client_secret.call('unwrap') %> | ||
| <% end -%> | ||
| idp_token_endpoint = https://login.microsoftonline.com/<%= @tenant_id %>/oauth2/v2.0/token | ||
| idp_device_auth_endpoint = https://login.microsoftonline.com/<%= @tenant_id %>/oauth2/v2.0/devicecode | ||
| idp_userinfo_endpoint = https://graph.microsoft.com/v1.0/me | ||
| idp_id_scope = https%3A%2F%2Fgraph.microsoft.com%2F.default | ||
| idp_auth_scope = openid profile email | ||
| override_homedir = <%= @sssd_home -%>/%u | ||
|
|
||
| [nss] | ||
| default_shell = /bin/bash | ||
| fallback_homedir = /home/%u | ||
coderabbitai[bot] marked this conversation as resolved.
Show resolved
Hide resolved
coderabbitai[bot] marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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.