https://garden.io logo
I have services which use garden + terraform. For ...
# 🌱|help-and-getting-started
a
I have services which use garden + terraform. For some reason they randomly have their secrets wiped out which are stored in secrets manager. I intialy create a secret in secret manager using terraform with an intial value later I manully add more values to it and thus the service can use it but randomly not everytime they get wiped out and get reset to the intial value I have the below block to prevent this but its still happening any suggestions ? resource "aws_secretsmanager_secret_version" "app_secret_version" { secret_id = aws_secretsmanager_secret.app_secret.id secret_string = var.secret_string lifecycle { ignore_changes = all } }
b
Hey @acoustic-architect-39949 First off, sorry for the late reply! We've had a quite a few people out recently and are a little behind on support 🙂 I'm afraid I can't really help without more context. My first guess would be that this is Terraform related, not Garden. But if you have a minimal repro I can try and look into it and see where the problem lies.
a
Hey @brief-restaurant-63679 Thanks for the response and I am really sorry for responding late. We were able to fix this issue and yes they were related to terraform. Thanks for your response
7 Views