Martyn Cross

Results 20 comments of Martyn Cross

Also have a similar use case here. I want to be able to more cleanly bridge the gap between Terraform and ArgoCD where Helm Releases (via ArgoCD Applications) need values...

The sensitive outputs requires a code change [here](https://github.com/hashicorp/terraform-provider-tfe/blob/32eaf78761260126d58c4d41181e55e43cadb4b3/tfe/data_source_outputs.go#L160) to catch if a secret is sensitive, then make an additional `GET` for to the state version outputs API [here](https://github.com/hashicorp/go-tfe/blob/main/state_version_output.go#L37). > I...

@alexeyatbluescape Yes, through debugging with support it turned out that their development team made a breaking API that now requires consuming workspaces to be whitelisted as remote state consumers (or...

@delner Is there any chance this hook can be added to the other HTTP clients instrumented by dd-trace-rb? We built our internal HTTP client on top of Excon and so...

> > Although it sounds related, the error occurs to me in TF cloud, so I can rule out that it is a token issue > > It's a similar...

Was this resolved? Still seeing this issue. Trying to disable it when debugging, as mixing these with the debug inlays is too noisy.

The heading type is wrong on the docs, so is confusing to read, but it should be `indexing.ignoreDirectoryNames` that you set. See the [deprecation message](https://github.com/hashicorp/terraform-ls/blob/main/docs/SETTINGS.md#deprecated-ignoredirectorynames-string) of the top level`ignoreDirectoryNames`.

To make this work on cloud and self hosted agents, you can use this workaround that we've been using on TFC for a long time now. ``` resource "terraform_data" "install_op_cli"...

> @MXfive how do you handle subsequent plan runs where it tries to read the previously created resources? I was able to create the resource without issues in the plan...