-
Notifications
You must be signed in to change notification settings - Fork 371
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
Add values_sensitive option to set sensitive values as yaml #625
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Volodymyr Kuznetsov <[email protected]>
It looks like |
It seems like this was fixed in #635 |
Any updates on this? This would be really helpful |
update: I forked @ksvladimir PR in order to pull changes from master, did the necessary adjustments on unit tests, published the provider to Terraform registry and it worked as expected. You can find the fork here and the published provider here
|
@alexsomesan can you take a look at this please? We have been using a custom provider version for some time and we haven't faced any issue. This should be included in the provider |
I hate to annoyingly +1 things, but anybody over at @hashicorp/terraform-ecosystem-kubernetes (sic CODEOWNERS) mind giving us a hand in pushing this towards an official release? |
Please integrate this feature, it will really make handling helm releases easier. |
+1 |
1 similar comment
+1 |
@hilariocoelho you would be an absolute hero if you could also include #746 and #1322 in your custom provider and rebase on a base release. |
Description
When using tools like sops or similar, multiple secrets are often managed in a single Yaml file. It's not possible to pass it using
set_sensitive
. This PR implementsvalues_sensitive
argument, which works just asvalues
, but hides its content just asset_sensitive
.The PR includes tests and documentation, and closes #546.
Note: after implementing it, I realized it duplicates with PR #549 .
Acceptance tests
Output from acceptance testing:
Release Note
References
Resolves #546
Supersedes #549
Community Note