RB
RB
Good find @kjpluck. Maybe the fix then is to document `access_token` should be empty if the AWS Amplify Github App is setup ? https://registry.terraform.io/providers/hashicorp/aws/5.83.1/docs/resources/amplify_app#repository-with-tokens The docs only describe a personal...
@kaplit thank you, that makes sense to keep configuration tools separate. @cbarensfeld thank you for sharing, would you share the terraform code too? It would be awesome if that docker...
The original intent of this issue was more a question on how can I structure my cloud custodian setup with regards to terraform ? I let go of importing any...
Hi Justin 🤝 Here is an example of the terraform ```hcl data "aws_iam_policy" "poweruser" { arn = "arn:aws:iam::aws:policy/PowerUserAccess" } output "policy" { value = data.aws_iam_policy.poweruser } ``` And the terraform...
I thought about this issue again today since github had issues with its webhooks. An additional benefit of this feature is that when github has issues sending out its web...
This ticket is only partially completed. I think we have the ability to set an emoji only when Atlantis kicks off but no emoji when Atlantis is running or when...
I didn't see anything in this log that jumped out. https://developer.mend.io/github/runatlantis/atlantis/-/job/2ef9dc3d-cecb-42a8-9ee9-5239134ffb69 I also did not see any issues with our `ignorePaths` ``` DEBUG: Found repo ignorePaths { "ignorePaths": [ "**/node_modules/**",...
Yes agreed. If it can enforce kebab case and it's official then there is no need to expose different configs to alter it
Hi @mildwonkey. I expected `terraform console` to be more of a repl than interfacing with existing configuration files. My use case is to explore terraform's functions in a sandbox repl...
What I've been doing is creating a temporary file so we can take advantage. ``` $ echo 'variable "school" { default = "my school" }' > temp_vars.tf $ terraform console...