Martin Atkins

Results 1242 comments of Martin Atkins

This issue is currently representing the fact that Terraform's rendering of output values is confusing in cases where the type has changed in a way where the new value renders...

There are two sequence-like type kinds in Terraform: 1. Tuple: a fixed-length sequence of elements that can each be of different types. 2. List: a variable-length sequence of elements that...

Thanks indeed for letting us know @nickyfow! Interestingly it seems like the new plan renderer may have "over-fixed" this, at least in terms of what I was asserting about the...

The "peeker" component is, when doing a normal parse, configured to filter out all comments (the boolean argument here is `includeComments`): https://github.com/hashicorp/hcl/blob/3883feb0e06458153e8a1b56566582b6725330d2/hclsyntax/public.go#L22 This then interacts with a quirk of the...

The parser is not designed to accept comment tokens in arbitrary places, so I don't think that simply pushing this problem down into the parser is a viable solution, but...

Hi @tmshn! Thanks for reporting this. I agree with your argument here that the behavior of this function is strange. [The current implementation](https://github.com/zclconf/go-cty/blob/e5d3f1507f80d88b60e58c4644f462636f400c98/cty/function/stdlib/string.go#L348) is very simple: it's just inserting a...

Hi @ThePletch, Looking at the code I see that Terraform makes this directory with mode `0755`, hard-coded. I agree that this seems overly limiting; I think it would be better...

Indeed we haven't intentionally made any attempt to fix this yet because we've been focused on configuration language stuff for the 0.12 cycle. I'm as puzzled as you are as...

I was expecting (though admittedly I didn't test) that if you create `.terraform` and add the `setgid` bit to it then anything inside the directory would be created with the...

Just to connect the dots here for future reference: over in #20410 there is a request that makes essentially the opposite assumption, making it so that a Terraform directory using...