-
Notifications
You must be signed in to change notification settings - Fork 20
DOCSP-38861 - OIDC #81
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
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
650922d
first draft
mongoKart fbd5272
autobuilder
mongoKart 2eeaaea
autobuilder
mongoKart 8d1a1b7
fixes
mongoKart 60c102e
refactor code
mongoKart feeffda
formatting
mongoKart ef9a110
refactor aws eks
mongoKart 3d5c068
refactor
mongoKart 61d2d7d
fix
mongoKart 6dd50d1
refactor
mongoKart c9cabca
add to usage examples
mongoKart 6cd1518
links
mongoKart 5f58b4c
js feedback
mongoKart 375ff2b
add quotes to key
mongoKart ddf20eb
remove aws eks
mongoKart 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
17 changes: 17 additions & 0 deletions
17
source/includes/authentication/azure-envs-connection-string.py
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,17 @@ | ||
from pymongo import MongoClient | ||
from azure.identity import DefaultAzureCredential | ||
from pymongo.auth_oidc import OIDCCallback, OIDCCallbackContext, OIDCCallbackResult | ||
|
||
# define callback, properties, URI, and MongoClient | ||
audience = "<percent-encoded application or service that the OIDC access token is intended for>" | ||
client_id = "<Azure identity client ID>" | ||
class MyCallback(OIDCCallback): | ||
def fetch(self, context: OIDCCallbackContext) -> OIDCCallbackResult: | ||
credential = DefaultAzureCredential(managed_identity_client_id=client_id) | ||
token = credential.get_token(f"{audience}/.default").token | ||
return OIDCCallbackResult(access_token=token) | ||
properties = {"OIDC_CALLBACK": MyCallback()} | ||
uri = ("mongodb://<hostname>:<port>/?" | ||
"&authMechanism=MONGODB-OIDC" | ||
"&authMechanismProperties=properties") | ||
client = MongoClient(uri) |
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,18 @@ | ||
from pymongo import MongoClient | ||
from azure.identity import DefaultAzureCredential | ||
from pymongo.auth_oidc import OIDCCallback, OIDCCallbackContext, OIDCCallbackResult | ||
|
||
# define callback, properties, and MongoClient | ||
audience = "<percent-encoded application or service that the OIDC access token is intended for>" | ||
client_id = "<Azure identity client ID>" | ||
class MyCallback(OIDCCallback): | ||
def fetch(self, context: OIDCCallbackContext) -> OIDCCallbackResult: | ||
credential = DefaultAzureCredential(managed_identity_client_id=client_id) | ||
token = credential.get_token(f"{audience}/.default").token | ||
return OIDCCallbackResult(access_token=token) | ||
properties = {"OIDC_CALLBACK": MyCallback()} | ||
client = MongoClient( | ||
"mongodb://<hostname>:<port>", | ||
authMechanism="MONGODB-OIDC", | ||
authMechanismProperties=properties, | ||
) |
9 changes: 9 additions & 0 deletions
9
source/includes/authentication/azure-imds-connection-string.py
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 @@ | ||
from pymongo import MongoClient | ||
|
||
# define properties, URI, and MongoClient | ||
properties = {"ENVIRONMENT": "azure", "TOKEN_RESOURCE": "<audience>"} | ||
uri = ("mongodb://<hostname>:<port>/?" | ||
"username=<Azure identity client ID>" | ||
"&authMechanism=MONGODB-OIDC" | ||
"&authMechanismProperties=properties") | ||
client = MongoClient(uri) |
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,10 @@ | ||||||||||||||||
from pymongo import MongoClient | ||||||||||||||||
|
||||||||||||||||
# define properties and MongoClient | ||||||||||||||||
properties = {"ENVIRONMENT": "azure", "TOKEN_RESOURCE": "<audience>"} | ||||||||||||||||
client = MongoClient( | ||||||||||||||||
"mongodb://<hostname>:<port>", | ||||||||||||||||
Comment on lines
+4
to
+6
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. S: Space this out for readability since the example is focused on the client (applies to all code examples)
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. added highlighting |
||||||||||||||||
username="<Azure identity client ID>", | ||||||||||||||||
authMechanism="MONGODB-OIDC", | ||||||||||||||||
authMechanismProperties=properties, | ||||||||||||||||
) |
14 changes: 14 additions & 0 deletions
14
source/includes/authentication/gcp-gke-connection-string.py
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,14 @@ | ||
from pymongo import MongoClient | ||
from pymongo.auth_oidc import OIDCCallback, OIDCCallbackContext, OIDCCallbackResult | ||
|
||
# define callback, properties, URI, and MongoClient | ||
class MyCallback(OIDCCallback): | ||
def fetch(self, context: OIDCCallbackContext) -> OIDCCallbackResult: | ||
with open("/var/run/secrets/kubernetes.io/serviceaccount/token") as fid: | ||
token = fid.read() | ||
return OIDCCallbackResult(access_token=token) | ||
properties = {"OIDC_CALLBACK": MyCallback()} | ||
uri = ("mongodb://<hostname>:<port>/?" | ||
"&authMechanism=MONGODB-OIDC" | ||
"&authMechanismProperties=properties") | ||
client = MongoClient(uri) |
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 @@ | ||
from pymongo import MongoClient | ||
from pymongo.auth_oidc import OIDCCallback, OIDCCallbackContext, OIDCCallbackResult | ||
|
||
# define callback, properties, and MongoClient | ||
class MyCallback(OIDCCallback): | ||
def fetch(self, context: OIDCCallbackContext) -> OIDCCallbackResult: | ||
with open("/var/run/secrets/kubernetes.io/serviceaccount/token") as fid: | ||
token = fid.read() | ||
return OIDCCallbackResult(access_token=token) | ||
properties = {"OIDC_CALLBACK": MyCallback()} | ||
client = MongoClient( | ||
"mongodb://<hostname>:<port>", | ||
authMechanism="MONGODB-OIDC", | ||
authMechanismProperties=properties, | ||
) |
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 @@ | ||
from pymongo import MongoClient | ||
|
||
# define properties, URI, and MongoClient | ||
properties = {"ENVIRONMENT": "gcp", "TOKEN_RESOURCE": "<audience>"} | ||
uri = ("mongodb://<hostname>:<port>/?" | ||
"username=<GCP identity client ID>" | ||
"&authMechanism=MONGODB-OIDC" | ||
"&authMechanismProperties=properties") | ||
client = MongoClient(uri) |
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,10 @@ | ||
from pymongo import MongoClient | ||
|
||
# define properties and MongoClient | ||
properties = {"ENVIRONMENT": "gcp", "TOKEN_RESOURCE": "<audience>"} | ||
client = MongoClient( | ||
"mongodb://<hostname>:<port>", | ||
username="<GCP identity client ID>", | ||
authMechanism="MONGODB-OIDC", | ||
authMechanismProperties=properties, | ||
) |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you pass properties in the connection string this way?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, you cannot pass the callback in the connection string