Timo Furrer
Timo Furrer
@NanoBjorn @joseroblesv that's not even the weirdest part. It's that your `${HOME}` is probably an absolute path in `/Users/`. Thus, this: > export DOCKER_HOST="unix:///Users/${HOME}/.colima/default/docker.sock" will lead to something like `unix:///Users//Users//.colima/default/docker.sock`,...
cc @ollevche @abstractionfactory
I just found out that a minimal example seems to work just fine: ```hcl terraform { required_providers { gitlab = { source = "gitlabhq/gitlab" version = "17.7.0" } } }...
I see traces like this in the trace log: ``` 2025-01-10T10:11:26.158+0100 [DEBUG] ReferenceTransformer: "data.gitlab_project.upstream[\"my-private-project"]" references: [] 2025-01-10T10:11:26.158+0100 [INFO] ReferenceTransformer: reference not found: "var.projects" 2025-01-10T10:11:26.158+0100 [INFO] ReferenceTransformer: reference not found: "each.key"...
@ollevche and I had a brief debug session and it turns out that renaming the data source with the `for_each` "fixes" the problem. We have three things to look into:...
@SimonInOps this is nice work! I'll need some time to review it. I also don't have sensors handy to actually give this a try. If anyone wants to double check...
It's not Go though :)
I see 👍 yes, I think two axis are enough.
@neomantra is there any plans to actually go ahead with supporting this? To add: it would also be nice if the two axis can be a different scales, e.g. the...
> You don't need to know the values at that point, both activity and workflow outbound interceptors have `GetLogger` you can customize when called. https://github.com/temporalio/samples-go/tree/main/interceptor shows how to write the...