{"id":44605213,"url":"https://github.com/makeplane/commercial-deployments","last_synced_at":"2026-02-14T10:35:10.562Z","repository":{"id":337370507,"uuid":"1151285700","full_name":"makeplane/commercial-deployments","owner":"makeplane","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-09T10:49:32.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-09T12:28:37.435Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/makeplane.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-06T09:23:06.000Z","updated_at":"2026-02-09T10:49:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/makeplane/commercial-deployments","commit_stats":null,"previous_names":["makeplane/commercial-deployments"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/makeplane/commercial-deployments","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/makeplane%2Fcommercial-deployments","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/makeplane%2Fcommercial-deployments/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/makeplane%2Fcommercial-deployments/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/makeplane%2Fcommercial-deployments/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/makeplane","download_url":"https://codeload.github.com/makeplane/commercial-deployments/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/makeplane%2Fcommercial-deployments/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29442771,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T10:17:46.583Z","status":"ssl_error","status_checked_at":"2026-02-14T10:17:22.534Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-14T10:35:09.970Z","updated_at":"2026-02-14T10:35:10.554Z","avatar_url":"https://github.com/makeplane.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Plane Commercial Deployments\n\nDeploy [Plane](https://plane.so) (open-source project management) on AWS. This repository provides:\n\n1. **Terraform** — Provisions the AWS infrastructure (VPC, EKS, Redis, Amazon MQ RabbitMQ, OpenSearch, S3, RDS PostgreSQL)\n2. **Kustomize** — Deploys the Plane application on the EKS cluster (coming soon)\n\n## Prerequisites\n\n- **Terraform** \u003e= 1.0 — [Download](https://developer.hashicorp.com/terraform/downloads)\n- **AWS CLI** configured with credentials — [Install](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html)\n- **kubectl** for cluster access — [Install](https://kubernetes.io/docs/tasks/tools/install-kubectl/)\n- **Kustomize** (for application deployment) — [Install](https://kustomize.io/) (or use `kubectl kustomize` built-in)\n\n---\n\n## Step 1: Deploy Infrastructure (Terraform)\n\nFrom the repository root:\n\n```bash\nterraform init\nterraform plan\nterraform apply\n```\n\n### Minimal Configuration\n\nThe root [main.tf](main.tf) deploys `plane_infra` with minimal required inputs. Defaults are used for EKS, cache, OpenSearch, object store, and database.\n\n```hcl\nmodule \"plane_infra\" {\n  source = \"git::https://github.com/makeplane/commercial-deployments.git//terraform?ref=main\"\n  # source = \"./terraform\"  # for local development\n\n  cluster_name       = \"plane-eks-cluster\"\n  region             = \"us-west-2\" # required\n  vpc_cidr           = \"10.0.0.0/16\"\n  single_nat_gateway = true\n  cluster_version    = \"1.34\"\n\n  tags = {\n    Environment = \"plane\"\n  }\n}\n```\n\nOverride defaults by passing `eks`, `cache`, `mq`, `opensearch`, `object_store`, or `db` objects. See [terraform/README.md](terraform/README.md) for all options.\n\n### Outputs\n\nAdd these output blocks to your configuration to expose module outputs (e.g. in `main.tf` or `outputs.tf`):\n\n```hcl\noutput \"vpc_id\" {\n  description = \"VPC ID\"\n  value       = module.plane_infra.vpc_id\n}\n\noutput \"private_subnet_ids\" {\n  description = \"Private subnet IDs\"\n  value       = module.plane_infra.private_subnet_ids\n}\n\noutput \"eks_cluster_id\" {\n  description = \"EKS cluster ID\"\n  value       = module.plane_infra.eks_cluster_id\n}\n\noutput \"eks_cluster_endpoint\" {\n  description = \"EKS cluster API endpoint\"\n  value       = module.plane_infra.eks_cluster_endpoint\n}\n\noutput \"configure_kubectl\" {\n  description = \"Command to configure kubectl\"\n  value       = module.plane_infra.configure_kubectl\n}\n\noutput \"redis_endpoint\" {\n  description = \"Redis endpoint\"\n  value       = module.plane_infra.redis_endpoint\n}\n\noutput \"mq_broker_id\" {\n  description = \"Amazon MQ RabbitMQ broker ID\"\n  value       = module.plane_infra.mq_broker_id\n}\n\noutput \"mq_broker_endpoints\" {\n  description = \"Amazon MQ RabbitMQ broker endpoints (AMQP)\"\n  value       = module.plane_infra.mq_broker_endpoints\n}\n\noutput \"mq_security_group_id\" {\n  description = \"Security group ID of the Amazon MQ broker\"\n  value       = module.plane_infra.mq_security_group_id\n}\n\noutput \"opensearch_endpoint\" {\n  description = \"OpenSearch endpoint\"\n  value       = module.plane_infra.opensearch_endpoint\n}\n\noutput \"s3_bucket_id\" {\n  description = \"S3 bucket ID\"\n  value       = module.plane_infra.s3_bucket_id\n}\n\noutput \"rds_cluster_endpoint\" {\n  description = \"RDS cluster writer endpoint\"\n  value       = module.plane_infra.rds_cluster_endpoint\n}\n\noutput \"rds_reader_endpoint\" {\n  description = \"RDS cluster reader endpoint\"\n  value       = module.plane_infra.rds_reader_endpoint\n}\n\noutput \"rds_db_name\" {\n  description = \"Database name\"\n  value       = module.plane_infra.rds_db_name\n}\n\noutput \"plane_password_secret_arn\" {\n  description = \"ARN of the plane-password secret (contains opensearch_password, mq_password)\"\n  value       = module.plane_infra.plane_password_secret_arn\n  sensitive   = true\n}\n\noutput \"rds_password_secret_arn\" {\n  description = \"ARN of the RDS master user password secret in Secrets Manager\"\n  value       = module.plane_infra.rds_password_secret_arn\n  sensitive   = true\n}\n```\n\n| Output | Description |\n|--------|-------------|\n| `vpc_id` | VPC ID |\n| `private_subnet_ids` | Private subnet IDs |\n| `eks_cluster_id` | EKS cluster ID |\n| `eks_cluster_endpoint` | EKS API endpoint |\n| `configure_kubectl` | Command to configure kubectl |\n| `redis_endpoint` | Redis endpoint |\n| `mq_broker_id` | Amazon MQ RabbitMQ broker ID |\n| `mq_broker_endpoints` | Amazon MQ RabbitMQ broker endpoints (AMQP) |\n| `mq_security_group_id` | Amazon MQ broker security group ID |\n| `opensearch_endpoint` | OpenSearch endpoint |\n| `s3_bucket_id` | S3 bucket ID |\n| `rds_cluster_endpoint` | RDS writer endpoint |\n| `rds_reader_endpoint` | RDS reader endpoint |\n| `rds_db_name` | Database name |\n| `plane_password_secret_arn` | OpenSearch and MQ passwords (Secrets Manager) |\n| `rds_password_secret_arn` | RDS password (Secrets Manager) |\n\n### Configure kubectl\n\n```bash\naws eks update-kubeconfig --region us-west-2 --name plane-eks-cluster\n```\n\n---\n\n## Step 2: Deploy Plane (Kustomize)\n\n*Kustomize manifests and deployment steps will be added here.*\n\nAfter infrastructure is ready:\n\n1. Retrieve secrets from AWS Secrets Manager (OpenSearch, MQ, and RDS passwords)\n2. Apply Kustomize manifests to deploy Plane on the EKS cluster\n3. Configure ingress and access\n\n---\n\n## Cleanup\n\nTo destroy infrastructure:\n\n```bash\nterraform destroy\n```\n\n**Warning**: This deletes all data in RDS, OpenSearch, Redis, Amazon MQ, and S3. Ensure backups exist if needed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmakeplane%2Fcommercial-deployments","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmakeplane%2Fcommercial-deployments","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmakeplane%2Fcommercial-deployments/lists"}