Chris Milson-Tokunaga
Chris Milson-Tokunaga
I have been having this bug with Deployments. I don't want to modify our Service resource until the deployment is ready, so I have a wait_for block that checks the...
Using `replace_triggered_by` *is* possible, via the [null](https://registry.terraform.io/providers/hashicorp/null/latest) provider. For example: ```terraform resource "null_resource" "trigger" { triggers = { key = "value" } } resource "kubernetes_manifest" "this" { manifest = {...
If you are implementing a reusable module, changing values would presumably be coming from input variables. If this is in your root module and you *must* use a regularly changing...
@microsoft-github-policy-service agree
Not sure how to get the Merge Builds check to succeed - error message is pretty non-descriptive.
@akshaysngupta @alxyzc Could I please get a review?
There is a comment in the code: `// To use an HTTP setting with a trusted root certificate, we must either override with a specific domain name or choose "Pick...
There is a workaround for this which seems obvious now. Don't try to put multiple hosts on the one `Ingress` resource, just create a different `Ingress` for each host, and...
We have a use case where we want to collect the users in multiple groups, however these groups may contain other directory objects that are out of our control. In...
Any progress on this? I made a quick and dirty PR that just uses the string from upstream as-is. Would be great to get a review so that I can...