Robin Breathe

Results 12 comments of Robin Breathe

@lsjostro permissionsets are also easily configured with terraform-provider-vault. We use something similar to the following to configure unique permissionsets for various clients: ```hcl resource "vault_generic_endpoint" "github_example_rw" { path = "github/permissionset/example-rw"...

A possibly naive question, but why does `terraform init` with `plugin_cache_dir` try to overwrite an existing provider installation rather than identifying that the provider is already present (i.e. stat, checksum/validate...

We have a similar use case where we would like to use the image manifest index to automatically add architecture-specific nodegroup annotations to allow Karpenter to migrate multi-arch pods from...

Are you sure that this patch actually affects the behaviour at all? Within the scope, it should make no difference where you call `defer`. We experience the same bug, but...

I've successfully drafted a `terraform-provider-deepmerge` using the new provider functionality in Terraform 1.8.0. It uses mergo under the hood and currently exposes two functions: `provider::deepmerge::replace` (mergo with "WithOverride" for recursive...

> I actually expect that either Terraform or OpenTofu (or both) will make some of the built-in functions be syntactic sugar for functions from a built-in provider. For example, `base64decode`...

I've published an initial implementation with `mergo` semantics at https://registry.terraform.io/providers/isometry/deepmerge/latest Code is at https://github.com/isometry/terraform-provider-deepmerge, contributions welcome! `tfplugindocs` generated documentation "isn't great", and I haven't spent the time to work out...

> This seems like the correct answer to this problem. It would help standardize a deepmerge function instead of relying on providers to implement it "correctly". Well… you tried. If...

> Thank you. We plan to support ARM this year, however, it doesn't look like we can deliver ARM support in Q2. What more is needed beyond the changes in...