{"id":26573966,"url":"https://github.com/voltaflow/infrastructure","last_synced_at":"2026-04-15T14:37:24.397Z","repository":{"id":283705317,"uuid":"952633923","full_name":"voltaflow/infrastructure","owner":"voltaflow","description":"Infrastructure as Code (IaC) repository for managing cloud and on-premise resources using Terraform, Kubernetes, and Ansible. Includes monitoring, logging, networking, and security configurations, with CI/CD pipelines powered by GitHub Actions.","archived":false,"fork":false,"pushed_at":"2025-03-21T16:54:45.000Z","size":11,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-21T17:42:24.932Z","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/voltaflow.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}},"created_at":"2025-03-21T15:56:25.000Z","updated_at":"2025-03-21T16:54:48.000Z","dependencies_parsed_at":"2025-03-21T17:52:38.166Z","dependency_job_id":null,"html_url":"https://github.com/voltaflow/infrastructure","commit_stats":null,"previous_names":["voltaflow/infrastructure"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/voltaflow/infrastructure","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voltaflow%2Finfrastructure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voltaflow%2Finfrastructure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voltaflow%2Finfrastructure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voltaflow%2Finfrastructure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/voltaflow","download_url":"https://codeload.github.com/voltaflow/infrastructure/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/voltaflow%2Finfrastructure/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31846366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T13:28:40.153Z","status":"ssl_error","status_checked_at":"2026-04-15T13:28:29.396Z","response_time":63,"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":"2025-03-23T01:32:02.569Z","updated_at":"2026-04-15T14:37:24.377Z","avatar_url":"https://github.com/voltaflow.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Infrastructure Repository\n\n## Overview\nThis repository contains the infrastructure code and automation for managing cloud environments using **Terraform**, **Ansible**, **Kubernetes**, **Helm**, and **CI/CD pipelines** using **GitHub Actions**.\n\n## Technologies Used\n- **Terraform**: Infrastructure as Code (IaC) for provisioning cloud resources.\n- **Ansible**: Configuration management and automation.\n- **Kubernetes**: Container orchestration for deploying applications.\n- **Helm**: Package manager for Kubernetes applications.\n- **Networking \u0026 Security**: IAM, VPC, firewall rules, and TLS certificates.\n- **Monitoring \u0026 Logging**: Prometheus, Grafana, Loki, Fluentd, ELK Stack.\n- **CI/CD**: GitHub Actions for automation and deployments.\n\n## Repository Structure\n```\nInfrastructure/\n├── terraform/                   # Infrastructure provisioning with Terraform\n│   ├── modules/                 # Reusable Terraform modules\n│   ├── environments/            # Environment-specific configurations\n│   ├── main.tf                  # Main configuration\n├── ansible/                     # Configuration management with Ansible\n│   ├── playbooks/               # Ansible playbooks\n│   ├── inventories/             # Host inventories\n│   ├── roles/                   # Modular roles\n├── k8s/                         # Kubernetes manifests\n│   ├── deployments/             # Deployment YAMLs\n│   ├── services/                # Service configurations\n│   ├── ingress/                 # Ingress configurations\n│   ├── configmaps/              # Configuration maps\n│   ├── secrets/                 # Secret management\n├── helm/                        # Helm charts for Kubernetes applications\n│   ├── charts/                  # Custom Helm charts\n│   ├── values.yaml              # Default values for Helm\n├── networking/                  # Network configurations\n│   ├── vpc.tf                   # VPC definitions\n│   ├── security-groups.tf       # Security groups and firewall rules\n├── security/                    # Security configurations\n│   ├── iam.tf                   # IAM roles and policies\n│   ├── firewalls.tf             # Firewall rules\n│   ├── tls-certificates/        # SSL/TLS Certificates\n├── monitoring/                  # Monitoring stack (Prometheus, Grafana, etc.)\n│   ├── prometheus/              # Prometheus configuration\n│   ├── grafana/                 # Dashboards and visualizations\n│   ├── alertmanager/            # Alerting rules\n├── logging/                     # Centralized logging configuration\n│   ├── loki/                    # Loki for log aggregation\n│   ├── fluentd/                 # Fluentd for log processing\n│   ├── elk-stack/               # ELK stack configurations\n├── ci-cd/                       # CI/CD pipelines with GitHub Actions\n│   ├── github-actions/          # Workflow definitions\n│   │   ├── terraform.yml        # Infrastructure deployment workflow\n│   │   ├── ansible.yml          # Configuration management workflow\n│   │   ├── k8s-deploy.yml       # Kubernetes deployment workflow\n│   │   ├── helm-deploy.yml      # Helm deployment workflow\n│   │   ├── security-checks.yml  # Security analysis workflows\n│   ├── scripts/                 # Helper scripts for automation\n├── docs/                        # Documentation\n│   ├── architecture-diagram.png # Infrastructure architecture\n│   ├── runbook.md               # Operational guides\n```\n\n## Setup \u0026 Usage\n\n### **1. Terraform Setup**\n```sh\ncd terraform\nterraform init\nterraform plan -var-file=environments/dev.tfvars\nterraform apply -var-file=environments/dev.tfvars\n```\n\n### **2. Ansible Setup**\n```sh\ncd ansible\nansible-playbook -i inventories/dev setup.yml\n```\n\n### **3. Kubernetes Deployment**\n```sh\nkubectl apply -f k8s/deployments/\nkubectl apply -f k8s/services/\n```\n\n### **4. Helm Deployment**\n```sh\nhelm install my-app helm/charts/app-chart/\n```\n\n## CI/CD Pipeline (GitHub Actions)\nThe **ci-cd/github-actions/** folder contains multiple workflows to automate infrastructure provisioning, configuration, and deployments.\n\n### **GitHub Actions Workflows**\n| Workflow Name           | Purpose |\n|------------------------|--------------------------------------------------------------|\n| `terraform.yml`       | Runs Terraform `plan` and `apply` to provision infrastructure |\n| `ansible.yml`         | Executes Ansible playbooks for configuration management |\n| `k8s-deploy.yml`      | Deploys applications and updates Kubernetes manifests |\n| `helm-deploy.yml`     | Deploys Helm charts to Kubernetes |\n| `security-checks.yml` | Runs security audits on infrastructure and dependencies |\n\n### **Running Workflows Manually**\nYou can manually trigger a workflow using the GitHub CLI:\n```sh\ngh workflow run terraform.yml -f environment=dev\ngh workflow run ansible.yml -f playbook=setup.yml\ngh workflow run k8s-deploy.yml -f app=my-app\ngh workflow run helm-deploy.yml -f release=my-release\ngh workflow run security-checks.yml\n```\n\n## Contributing\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature-branch`).\n3. Commit changes (`git commit -m \"Description of changes\"`).\n4. Push to the branch (`git push origin feature-branch`).\n5. Open a Pull Request.\n\n## License\nThis project is licensed under the MIT License.\n\n---\nFor detailed guidelines, refer to [CLAUDE.md](CLAUDE.md).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoltaflow%2Finfrastructure","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvoltaflow%2Finfrastructure","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoltaflow%2Finfrastructure/lists"}