We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe. If use GCP Secret Manager, It can't parse json data
example, I have a GCP Secret Manager named kingbj0429-secret and kingbj0429-secret has various secrets as json
kingbj0429-secret
{ db-username: admin db-password: admin }
like this situatiom, argo-vault-plugin for GCP Secret Manager can't parse db-password secret
db-password
argo-vault-plugin for GCP Secret Manager get all json data itself.
so I can't use secret with GCP
apiVersion: v1 data: #-- <path:projects/kingbj0429-447407/secrets/kingbj0429-secret#db-password> test: PHBhdGg6cHJvamVjdHMva2luZ2JqMDQyOS00NDc0MDcvc2VjcmV0cy9raW5nYmowNDI5LXNlY3JldCNkYi1wYXNzd29yZD4= kind: Secret metadata: name: test-secrets namespace: arc-system type: Opaque
Describe the solution you'd like
this is gcpsecretmanager.go's code
gcpsecretmanager.go
It can only use secret manager name as key json's key can't be key
so I want to add function for parsing json key like awssecretmanager.go's GetSecrets Function
awssecretmanager.go
Describe alternatives you've considered maybe a implement is needed
Additional context Can I Pull Request this?
I'll code about this
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
If use GCP Secret Manager, It can't parse json data
example,
I have a GCP Secret Manager named
kingbj0429-secret
and
kingbj0429-secret
has various secrets as jsonlike this situatiom, argo-vault-plugin for GCP Secret Manager can't parse
db-password
secretargo-vault-plugin for GCP Secret Manager get all json data itself.
so I can't use secret with GCP
Describe the solution you'd like
this is
gcpsecretmanager.go
's codeIt can only use secret manager name as key
json's key can't be key
so I want to add function for parsing json key like
awssecretmanager.go
's GetSecrets FunctionDescribe alternatives you've considered
maybe a implement is needed
Additional context
Can I Pull Request this?
I'll code about this
The text was updated successfully, but these errors were encountered: