{"id":20757615,"url":"https://github.com/dodevops/terraform-aws-eks","last_synced_at":"2026-04-21T00:32:33.024Z","repository":{"id":143239470,"uuid":"615198167","full_name":"dodevops/terraform-aws-eks","owner":"dodevops","description":"Highly opinionated Kubernetes management for AWS","archived":false,"fork":false,"pushed_at":"2023-04-19T06:09:18.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-01-18T04:43:49.219Z","etag":null,"topics":["aws","eks","terraform-module"],"latest_commit_sha":null,"homepage":"","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dodevops.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":"2023-03-17T06:54:41.000Z","updated_at":"2023-04-17T06:27:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"9daddc07-4877-4880-b4a5-a6f1d64f3595","html_url":"https://github.com/dodevops/terraform-aws-eks","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fterraform-aws-eks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fterraform-aws-eks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fterraform-aws-eks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fterraform-aws-eks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dodevops","download_url":"https://codeload.github.com/dodevops/terraform-aws-eks/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243067047,"owners_count":20230859,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","eks","terraform-module"],"created_at":"2024-11-17T09:43:24.589Z","updated_at":"2025-12-25T00:38:18.710Z","avatar_url":"https://github.com/dodevops.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS kubernetes resources\n\n## Introduction\n\nThis module manages required AWS Kubernetes resources as EKS clusters.\n\nUses [terraform-aws-modules/eks/aws](https://registry.terraform.io/modules/terraform-aws-modules/eks/aws) for implementation.\n\n## Usage\n\nInstantiate the module by calling it from Terraform like this:\n\n```hcl\nmodule \"aws-eks\" {\n  source = \"dodevops/kubernetes/aws\"\n  version = \"\u003cversion\u003e\"\n  \n  (...)\n}\n```\n\n\u003c!-- BEGIN_TF_DOCS --\u003e\n## Requirements\n\nThe following requirements are needed by this module:\n\n- kubernetes (\u003e=2.19.0)\n\n## Providers\n\nThe following providers are used by this module:\n\n- aws\n\n## Modules\n\nThe following Modules are called:\n\n### eks\n\nSource: terraform-aws-modules/eks/aws\n\nVersion: 19.10.0\n\n## Resources\n\nThe following resources are used by this module:\n\n- [aws_eks_cluster_auth.k8s](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/eks_cluster_auth) (data source)\n\n## Required Inputs\n\nThe following input variables are required:\n\n### aws-auth-map-roles\n\nDescription: Desired content of the [aws-auth configmap](https://docs.aws.amazon.com/eks/latest/userguide/add-user-role.html)\n\nType: `list(any)`\n\n### k8s\\_version\n\nDescription: [Kubernetes version](https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html) to use for the EKS cluster.\n\nType: `string`\n\n### nodegroups\n\nDescription: List of Nodegroup configurations\n\n* suffix: Nodegroup name suffix\n* subnet\\_ids: Ids of used subnets in the nodegroup\n* scaling: Scaling configuration\n  * desired: Desired number of nodes\n  * min: Minimum number of nodes\n  * max: Maximum number of nodes\n* disk\\_size: Disk size in GB\n* instance\\_type: Instance type of the nodes}\n\nType:\n\n```hcl\nlist(object({\n    suffix : string,\n    subnet_ids : list(string),\n    scaling : object({\n      min : number,\n      max : number,\n      desired : number\n    }),\n    disk_size : number,\n    instance_type : string\n  }))\n```\n\n### project\n\nDescription: Project this configuration is for\n\nType: `any`\n\n### stage\n\nDescription: Name of the stage for this state\n\nType: `string`\n\n### subnet\\_cidrs\n\nDescription: List of IDs of subnets to use in the EKS\n\nType: `list(string)`\n\n### subnet\\_ids\n\nDescription: List of IDs of subnets to use in the EKS\n\nType: `list(string)`\n\n### vpc\\_id\n\nDescription: ID of the VPC the cluster is in\n\nType: `string`\n\n## Optional Inputs\n\nNo optional inputs.\n\n## Outputs\n\nThe following outputs are exported:\n\n### ca\\_certificate\n\nDescription: CA certificate of the EKS endpoint\n\n### host\n\nDescription: EKS cluster endpoint\n\n### oidc\\_provider\n\nDescription: OIDC provider used by the EKS\n\n### token\n\nDescription: Auth token for the EKS endpoint\n\u003c!-- END_TF_DOCS --\u003e\n\n## Development\n\nUse [terraform-docs](https://terraform-docs.io/) to generate the API documentation by running\n\n    terraform fmt .\n    terraform-docs .\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdodevops%2Fterraform-aws-eks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdodevops%2Fterraform-aws-eks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdodevops%2Fterraform-aws-eks/lists"}