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
> terraform version Terraform v1.9.5 on windows_amd64 + provider registry.terraform.io/hashicorp/aws v5.74.0 + provider registry.terraform.io/hashicorp/awscc v1.19.0 + provider registry.terraform.io/hashicorp/cloudinit v2.3.5 + provider registry.terraform.io/hashicorp/helm v2.16.1 + provider registry.terraform.io/hashicorp/kubernetes v2.33.0 + provider registry.terraform.io/hashicorp/local v2.5.2 + provider registry.terraform.io/hashicorp/null v3.2.3 + provider registry.terraform.io/hashicorp/time v0.12.1 + provider registry.terraform.io/hashicorp/tls v4.0.6
data "aws_secretsmanager_secret_version" "argocd_secrets" { secret_id = awscc_secretsmanager_secret.argocd_admin_password.secret_id } resource "helm_release" "argocd" { name = "argocd" repository = "https://argoproj.github.io/argo-helm" chart = "argo-cd" version = "7.6.3" namespace = "argocd" create_namespace = true values = [ local.yaml_file ] set_sensitive { name = "configs.secret.argocdServerAdminPassword" value = bcrypt(data.aws_secretsmanager_secret_version.argocd_secrets.secret_string) } depends_on = [ module.eks ] }
NOTE: In addition to Terraform debugging, please set HELM_DEBUG=1 to enable debugging info from helm.
terraform apply
terraform plan
No changes should be found.
Changes were found.
If I remove the set_sensitive block everything works as expected.
set_sensitive
metadata
The text was updated successfully, but these errors were encountered:
jrhouston
No branches or pull requests
Terraform, Provider, Kubernetes and Helm Versions
Affected Resource(s)
Terraform Configuration Files
Debug Output
NOTE: In addition to Terraform debugging, please set HELM_DEBUG=1 to enable debugging info from helm.
Panic Output
Steps to Reproduce
terraform apply
terraform plan
Expected Behavior
No changes should be found.
Actual Behavior
Changes were found.
Important Factoids
If I remove the
set_sensitive
block everything works as expected.References
metadata
computation cause helm_release to be updated in-place #1236Community Note
The text was updated successfully, but these errors were encountered: