-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix: Azure storage and Vault simplified #89
Conversation
locals { | ||
container_name = try(module.storage[0].container.name, "") | ||
account_name = try(module.storage[0].account.name, "") | ||
access_key = try(module.storage[0].account.primary_access_key, "") | ||
queue_name = try(module.storage[0].queue.name, "") | ||
blob_container = var.external_bucket == null ? coalesce(var.blob_container, local.container_name) : "" | ||
storage_account = var.external_bucket == null ? coalesce(var.storage_account, local.account_name) : "" | ||
storage_key = var.external_bucket == null ? coalesce(var.storage_key, local.access_key) : "" | ||
bucket = "az://${local.storage_account}/${local.blob_container}" | ||
queue = (var.use_internal_queue || var.blob_container == "" || var.external_bucket == null) ? "internal://" : "az://${local.account_name}/${local.queue_name}" | ||
|
||
redis_connection_string = "redis://:${module.redis.instance.primary_access_key}@${module.redis.instance.hostname}:${module.redis.instance.port}" | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jsbroks I am so glad to get rid of this.
This needs to be released before we can merge and roll out to QA |
We have opted to hold off on releasing the ability to decouple the object store from the k8s cluster creation for now. |
### [2.13.1](v2.13.0...v2.13.1) (2024-08-05) ### Bug Fixes * Azure storage and Vault simplified ([#89](#89)) ([4832d24](4832d24))
This PR is included in version 2.13.1 🎉 |
No description provided.