Martin Atkins

Results 1242 comments of Martin Atkins

In case it's useful context for someone who works on this in future, I believe this is the current location of the legacy SDK workaround that the view layer implements...

Interestingly, the current implementation of `NormalizeObjectFromLegacySDK` seems to focus only on normalizing the representation of nested blocks, which I don't think explains why `override_special` (which is an attribute of type...

Hi @oprudkyi! Thanks for sharing this feedback. Can you say a little about why you don't include the dependency lock file in your version control, which would then cause you...

It should be possible to upgrade dependencies without accessing the state like this: ``` terraform init -upgrade -backend=false ``` The extra `-backend=false` tells Terraform that you don't intend to do...

I see that one of the tests for `terraform refresh` is relying on the noisy output as its only signal for exactly which resource instances got refreshed, so if we...

Hi @bucs-fan813, `terraform fmt` considers it to be a style decision to always use Unix-style line endings on all platforms, but you're right that sometimes it can potentially change the...

Hi @paulczar, The installation instructions and the `hashicorp.repo` file are expecting the `$releasever` substitution variable to be just "8" (major version) rather than "8.6" (minor version), which seems to disagree...

Hi @makarov-roman, The resource type of `module.logging.s3.bucket` would be "s3", just as the resource type of `aws_s3_bucket.logs` is "aws_s3_bucket". There isn't any situation where the resource type isn't already included...

Thanks for that extra context! Unfortunately `module.logging.s3.bucket` _is_ a valid address, but it has a different meaning than you expected: it means a ` resource "s3" "bucket"` block inside `module.logging`,...

Hi @ncabatoff! Thanks for that feedback. I think a tension here is that it's _expected_ (and in fact _required_) for `from` to refer to something that isn't declared. Terraform will...