[!WARNING]
Github has shown it does not respect its users. Other have said it better than I can.
- https://www.theregister.com/2022/06/30/software_freedom_conservancy_quits_github/
- https://www.andrlik.org/dispatches/migrating-from-github-motivation/
- https://techresolve.blog/2025/12/27/looking-to-migrate-company-off-github-whats-the/
- https://lord.io/leaving-github/
- https://dev.to/alanwest/how-to-actually-migrate-from-github-to-codeberg-without-losing-your-mind-33bf>
Development has moved to Codeberg: ➡️ https://codeberg.org/DavidJEddy/terraform-aws-overmind
Please update your remotes:
git remote set-url origin https://codeberg.org/DavidJEddy/terraform-aws-overmind
Terraform module to enable Overmind quickly and easily to a project.
Following the Overmind getting-started process this module provides an additional option for onboarding a project managed by Terraform and hosted in AWS.
- Add a reference to the module in your project
module "overmind" {
source = "davidjeddy/overmind/aws"
version = "1.0.1"
}- Add a new output in your project
output "overmind_iam_role_arn" {
description = "IAM role ARN for Overmind"
value = module.overmind.iam_role_arn
}- Execute Terraform to deploy the resources
terraform apply
...
module.overmind.aws_iam_policy.this: Refreshing state... [id=arn:aws:iam::672699160972:policy/overmind]
module.overmind.aws_iam_role.this: Refreshing state... [id=overmind]
module.overmind.aws_iam_role_policy_attachment.this: Refreshing state... [id=overmind-...]
Apply complete! ...
Outputs:
overmind_iam_role_arn = "arn:aws:iam::672699160972:role/overmind"- Using the
overmind_iam_role_arnoutput value, complete Overmind getting-started process
