{"id":50454121,"url":"https://github.com/mizcausevic-dev/platform-foundation-blueprint","last_synced_at":"2026-06-01T01:05:40.008Z","repository":{"id":357462561,"uuid":"1235969551","full_name":"mizcausevic-dev/platform-foundation-blueprint","owner":"mizcausevic-dev","description":"Terraform infrastructure blueprint for multi-environment networking, compute, observability, and policy-aware platform foundation design.","archived":false,"fork":false,"pushed_at":"2026-05-12T21:41:20.000Z","size":214,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-12T23:21:49.466Z","etag":null,"topics":["iam","infrastructure-as-code","multi-environment","networking","platform-engineering","terraform"],"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/mizcausevic-dev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-05-11T20:37:21.000Z","updated_at":"2026-05-12T21:41:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/mizcausevic-dev/platform-foundation-blueprint","commit_stats":null,"previous_names":["mizcausevic-dev/platform-foundation-blueprint"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/mizcausevic-dev/platform-foundation-blueprint","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mizcausevic-dev%2Fplatform-foundation-blueprint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mizcausevic-dev%2Fplatform-foundation-blueprint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mizcausevic-dev%2Fplatform-foundation-blueprint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mizcausevic-dev%2Fplatform-foundation-blueprint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mizcausevic-dev","download_url":"https://codeload.github.com/mizcausevic-dev/platform-foundation-blueprint/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mizcausevic-dev%2Fplatform-foundation-blueprint/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33755379,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["iam","infrastructure-as-code","multi-environment","networking","platform-engineering","terraform"],"created_at":"2026-06-01T01:05:39.932Z","updated_at":"2026-06-01T01:05:39.993Z","avatar_url":"https://github.com/mizcausevic-dev.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Platform Foundation Blueprint\r\n\r\nPlatform Foundation Blueprint is a Terraform infrastructure design for a policy-aware, multi-environment platform baseline. It frames networking, ingress, compute, and observability as one cohesive foundation instead of isolated cloud resources.\r\n\r\n## Portfolio Takeaway\r\n\r\n- Terraform-first infrastructure blueprint with environment overlays\r\n- network, compute, and observability split into readable modules\r\n- platform story that fits control rooms, governance, and reliability systems already in the portfolio\r\n- real documentation and proof assets instead of a bare `main.tf`\r\n\r\n## Overview\r\n\r\n| Area | Details |\r\n| --- | --- |\r\n| IaC | Terraform |\r\n| Cloud | AWS-oriented module structure |\r\n| Focus | Multi-environment networking, ALB ingress, ECS-style compute, and observability alarms |\r\n| Modules | `network`, `compute`, `observability` |\r\n| Environments | `dev`, `prod` |\r\n| Runtime Shape | Blueprint and module layout ready for `terraform init/plan` once Terraform is installed |\r\n\r\n## What It Does\r\n\r\n- establishes a VPC with public and private subnet lanes\r\n- creates a load-balanced compute entry point\r\n- wires a log group and 5xx alarm for operational visibility\r\n- keeps env-specific settings in dedicated `tfvars` overlays\r\n\r\n## Architecture\r\n\r\n```mermaid\r\nflowchart LR\r\n  A[\"Environment tfvars\"] --\u003e B[\"Root Terraform composition\"]\r\n  B --\u003e C[\"Network module\"]\r\n  B --\u003e D[\"Compute module\"]\r\n  B --\u003e E[\"Observability module\"]\r\n  C --\u003e F[\"VPC and subnet lanes\"]\r\n  D --\u003e G[\"ALB and ECS cluster\"]\r\n  E --\u003e H[\"Logs and 5xx alarm\"]\r\n```\r\n\r\nAdditional detail lives in [docs/architecture.md](./docs/architecture.md).\r\n\r\n## Module Layout\r\n\r\n- `modules/network`\r\n- `modules/compute`\r\n- `modules/observability`\r\n- `environments/dev.tfvars`\r\n- `environments/prod.tfvars`\r\n\r\n## Example Plan Flow\r\n\r\n```powershell\r\ncd platform-foundation-blueprint\r\nterraform init\r\nterraform plan -var-file=\"environments/dev.tfvars\"\r\n```\r\n\r\nBy default, this repo uses `offline_mode=true`, which allows local planning without real AWS credentials. That keeps the blueprint easy to inspect on a workstation before you wire it to a live account.\r\n\r\n## Screenshots\r\n\r\n### Hero\r\n![Platform Foundation Blueprint hero](https://raw.githubusercontent.com/mizcausevic-dev/platform-foundation-blueprint/main/screenshots/01-hero.png)\r\n\r\n### Module Lanes\r\n![Platform Foundation Blueprint module lanes](https://raw.githubusercontent.com/mizcausevic-dev/platform-foundation-blueprint/main/screenshots/02-module-lanes.png)\r\n\r\n### Environment Overlay\r\n![Platform Foundation Blueprint environment overlay](https://raw.githubusercontent.com/mizcausevic-dev/platform-foundation-blueprint/main/screenshots/03-environments.png)\r\n\r\n### Validation Proof\r\n![Platform Foundation Blueprint proof](https://raw.githubusercontent.com/mizcausevic-dev/platform-foundation-blueprint/main/screenshots/04-proof.png)\r\n\r\n## Local Run\r\n\r\nFor local proof and structure review:\r\n\r\n```powershell\r\ncd platform-foundation-blueprint\r\nterraform init\r\nterraform plan -var-file=\"environments/dev.tfvars\"\r\n```\r\n\r\nFor a real deployment-backed plan, turn off offline mode and use valid AWS credentials:\r\n\r\n```powershell\r\nterraform plan -var-file=\"environments/dev.tfvars\" -var=\"offline_mode=false\"\r\n```\r\n\r\n## Tech Stack\r\n\r\n[![Terraform](https://img.shields.io/badge/Terraform-1.x-0f172a?style=for-the-badge\u0026logo=terraform\u0026logoColor=f8fafc)](https://developer.hashicorp.com/terraform)\r\n[![AWS](https://img.shields.io/badge/AWS-blueprint-0f172a?style=for-the-badge\u0026logo=amazonaws\u0026logoColor=f8fafc)](https://aws.amazon.com/)\r\n\r\n## Portfolio Links\r\n\r\n- [Kinetic Gain](https://kineticgain.com/)\r\n- [LinkedIn](https://www.linkedin.com/in/mirzacausevic)\r\n- [GitHub](https://github.com/mizcausevic-dev)\r\n- [Skills Page](https://mizcausevic.com/skills/)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmizcausevic-dev%2Fplatform-foundation-blueprint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmizcausevic-dev%2Fplatform-foundation-blueprint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmizcausevic-dev%2Fplatform-foundation-blueprint/lists"}