Expose GCP Secret Manager case sensitive option#626
Merged
hramezani merged 5 commits intopydantic:mainfrom Jun 9, 2025
Merged
Conversation
hramezani
reviewed
Jun 3, 2025
| _secret_client: SecretManagerServiceClient | ||
|
|
||
| def __init__(self, secret_client: SecretManagerServiceClient, project_id: str) -> None: | ||
| def __init__(self, secret_client: SecretManagerServiceClient, project_id: str, case_sensitive: bool) -> None: |
Member
There was a problem hiding this comment.
Don't we need to define a default value for case_sensitive for backward compatibility?
Contributor
Author
There was a problem hiding this comment.
Users should never be instantiating this class directly. The GoogleSecretManagerMapping class is only instantiated internally within the GoogleSecretManagerSettingsSource class.
I added a default value to the new case_sensitive parameter of that class which will carry through to here.
Member
|
Thanks @bellmatthewf for this PR. @ezwiefel Can you take a look at this PR? |
ezwiefel
approved these changes
Jun 9, 2025
| _secret_client: SecretManagerServiceClient | ||
|
|
||
| def __init__(self, secret_client: SecretManagerServiceClient, project_id: str) -> None: | ||
| def __init__(self, secret_client: SecretManagerServiceClient, project_id: str, case_sensitive: bool) -> None: |
Contributor
|
@hramezani LGTM |
hramezani
approved these changes
Jun 9, 2025
Member
|
Thanks @bellmatthewf for the PR and @ezwiefel for review. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Issue 625
Issue
The "pydantic-settings[gcp-secret-manager]" integration does not expose the case_sensitive parameter in it's API. It defaults to True and cannot be changed.
Note on changes
I considered using the
parse_env_varsutil function to keep this source in line with others, but that function isn't ideal here because it would iteratively call the GCP API during instantiation to get each variable value.Better to keep those calls lazy by implementing case sensitivity changes at the mapping class level