RB
RB
By the way the current git version is pinned here. We will most likely not downgrade. https://github.com/runatlantis/atlantis/blob/ad79d0708b658d78aee7810e9b35cbc31c93df0b/docker-base/Dockerfile#L31 The error seems to be resolved in terraform-aws-atlantis module's [3.17.0](https://github.com/terraform-aws-modules/terraform-aws-atlantis/releases/tag/v3.17.0) release.
@gfoligna-nyshex have you seen this flag [`--enable-regexp-cmd`](https://www.runatlantis.io/docs/server-configuration.html#enable-regexp-cmd) (created by pr https://github.com/runatlantis/atlantis/pull/1419) E.g. ``` atlantis plan -p .* ```
If you're using arm osx m1, then you need to run the `docker build` with `--platform linux/arm64` or it will build but then `aws --version` will not work This works...
```hcl rule "aws_resource_missing_tags" { enabled = true tags = ["Foo", "Bar"] exclude = ["aws_autoscaling_group"] # (Optional) Exclude some resource types from tag checks msg = "bro bro bro you're missing...
¯\_(ツ)_/¯ That would be more helpful and customizable than the current implementation. I'd still want to append the output at the very least. Like the example above, I'd want to...
@jamengual how come this was closed?
it might be easier to upgrade in increments i.e. go 1.18 and then go 1.19
Isn't this available now via https://www.runatlantis.io/docs/repo-level-atlantis-yaml.html#run-plans-and-applies-in-parallel ? ```yaml # atlantis.yaml in repo parallel_plan: true parallel_apply: true ``` cc: @voidlily @nwsparks @hussainbani @Dawnflash @jamengual @lkysow I would prefer enabling this in...
@johncblandii I believe this test fails because we're returning empty strings instead of null. I believe there was a discussion on it and we came to the conclusion that it's...
@mcalhoun I reopened this ticket because I was hoping we could do something like this ```sh # get components atmos terraform plan # get root stack atmos terraform plan ecr...