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
No description provided.
The text was updated successfully, but these errors were encountered:
Redis is being created even though create_redis is explicitly set to false in the deployment using the GCP Terraform module public-dns-with-cloud-dns.
create_redis
false
Here’s the variable definition:
variable "create_redis" { default = false description = "Boolean indicating whether to provision a Redis instance (true) or not (false)." nullable = false type = bool }
The logic in the module at main.tf#L362 appears to cause the issue:
redis = { install = !var.create_redis }
Sorry, something went wrong.
pr #186
The customer should be setting create_redis to true
vijay-wandb
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: