{"id":37824195,"url":"https://github.com/quortex/terraform-aws-network","last_synced_at":"2026-01-16T15:44:14.136Z","repository":{"id":41635395,"uuid":"257544442","full_name":"quortex/terraform-aws-network","owner":"quortex","description":"A terraform module for Quortex infrastructure AWS network layer.","archived":false,"fork":false,"pushed_at":"2025-01-07T11:25:40.000Z","size":41,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-01-07T11:39:58.801Z","etag":null,"topics":["aws","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quortex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2020-04-21T09:25:20.000Z","updated_at":"2024-09-05T14:26:19.000Z","dependencies_parsed_at":"2024-09-05T21:10:31.181Z","dependency_job_id":null,"html_url":"https://github.com/quortex/terraform-aws-network","commit_stats":null,"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/quortex/terraform-aws-network","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quortex%2Fterraform-aws-network","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quortex%2Fterraform-aws-network/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quortex%2Fterraform-aws-network/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quortex%2Fterraform-aws-network/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quortex","download_url":"https://codeload.github.com/quortex/terraform-aws-network/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quortex%2Fterraform-aws-network/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"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":["aws","terraform"],"created_at":"2026-01-16T15:44:14.027Z","updated_at":"2026-01-16T15:44:14.100Z","avatar_url":"https://github.com/quortex.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n[![Quortex][logo]](https://quortex.io)\n\n# terraform-aws-network\n\nA terraform module for Quortex infrastructure EKS network layer.\n\nIt provides a set of resources necessary to provision the Kubernetes cluster of the Quortex infrastructure on Amazon AWS, via EKS.\n\n![infra_diagram]\n\nThis module is available on [Terraform Registry][registry_tf_aws-network].\n\nGet all our terraform modules on [Terraform Registry][registry_tf_modules] or on [Github][github_tf_modules] !\n\n## Created resources\n\nThis module creates the following resources in AWS:\n\n- a dedicated VPC\n- 2 or more public subnets in different AZ\n- 2 or more private subnets in different AZ\n- an internet gateway\n- route tables\n- a NAT gateway in each public subnet\n\nIn addition, if NAT gateways are not provided an EIP allocation id:\n\n- an Elastic IP for each such NAT gateway\n\n## Usage example\n\n```\nmodule \"network\" {\n  source = \"quortex/network/aws\"\n\n  name               = \"quortexcluster\"\n  vpc_cidr_block     = \"10.0.0.0/16\"\n  subnets = {\n    pub-eu-west-1b = {\n      availability_zone = \"eu-west-1b\"\n      cidr              = \"10.100.64.0/22\"\n      public            = true\n    }\n    pub-eu-west-1c = {\n      availability_zone = \"eu-west-1c\"\n      cidr              = \"10.100.68.0/22\"\n      public            = true\n    }\n    priv-eu-west-1b = {\n      availability_zone = \"eu-west-1b\"\n      cidr              = \"10.100.96.0/19\"\n      public            = false\n    }\n    priv-eu-west-1c = {\n      availability_zone = \"eu-west-1c\"\n      cidr              = \"10.100.128.0/19\"\n      public            = false\n    }\n  }\n  nat_gateway = {\n    quortex = {\n      subnet_key = \"pub-eu-west-1b\"\n    }\n  }\n}\n\n```\n\n---\n\n## Related Projects\n\nThis project is part of our terraform modules to provision a Quortex infrastructure for AWS.\n\nCheck out these related projects.\n\n- [terraform-aws-eks-cluster][registry_tf_aws-eks_cluster] - A terraform module for Quortex infrastructure AWS cluster layer.\n\n- [terraform-aws-eks-load-balancer][registry_tf_aws-eks_load_balancer] - A terraform module for Quortex infrastructure AWS load balancing layer.\n\n- [terraform-aws-storage][registry_tf_aws-eks_storage] - A terraform module for Quortex infrastructure AWS persistent storage layer.\n\n## Help\n\n**Got a question?**\n\nFile a GitHub [issue](https://github.com/quortex/terraform-aws-network/issues) or send us an [email][email].\n\n\n  [logo]: https://storage.googleapis.com/quortex-assets/logo.webp\n  [infra_diagram]: https://storage.googleapis.com/quortex-assets/infra_aws_002.jpg\n\n  [email]: mailto:info@quortex.io\n\n  [registry_tf_modules]: https://registry.terraform.io/modules/quortex\n  [registry_tf_aws-eks_network]: https://registry.terraform.io/modules/quortex/network/aws\n  [registry_tf_aws-eks_cluster]: https://registry.terraform.io/modules/quortex/eks-cluster/aws\n  [registry_tf_aws-eks_load_balancer]: https://registry.terraform.io/modules/quortex/load-balancer/aws\n  [registry_tf_aws-eks_storage]: https://registry.terraform.io/modules/quortex/storage/aws\n  [github_tf_modules]: https://github.com/quortex?q=terraform-\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquortex%2Fterraform-aws-network","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquortex%2Fterraform-aws-network","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquortex%2Fterraform-aws-network/lists"}