{"id":19975303,"url":"https://github.com/ekowcharles/aws-eks-terraform","last_synced_at":"2026-04-29T04:34:09.558Z","repository":{"id":73537545,"uuid":"170800167","full_name":"ekowcharles/aws-eks-terraform","owner":"ekowcharles","description":"Demo for building AWS EKS using Terraform","archived":false,"fork":false,"pushed_at":"2019-02-15T05:03:20.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-01T18:46:42.116Z","etag":null,"topics":["aws","devops","eks","infrastructure","kuber","terraform"],"latest_commit_sha":null,"homepage":"","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/ekowcharles.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":"2019-02-15T04:07:44.000Z","updated_at":"2023-02-05T07:54:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"eb145b0d-39dd-4a5d-88dd-7b60dfd73374","html_url":"https://github.com/ekowcharles/aws-eks-terraform","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ekowcharles/aws-eks-terraform","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekowcharles%2Faws-eks-terraform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekowcharles%2Faws-eks-terraform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekowcharles%2Faws-eks-terraform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekowcharles%2Faws-eks-terraform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ekowcharles","download_url":"https://codeload.github.com/ekowcharles/aws-eks-terraform/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ekowcharles%2Faws-eks-terraform/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262981483,"owners_count":23394536,"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","devops","eks","infrastructure","kuber","terraform"],"created_at":"2024-11-13T03:17:48.662Z","updated_at":"2026-04-29T04:34:09.514Z","avatar_url":"https://github.com/ekowcharles.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aws-eks-terraform\n\nThe contents of this repo are based on the steps outlined in [Terraform's AWS EKS introduction](https://learn.hashicorp.com/terraform/aws/eks-intro#configuring-kubectl-for-eks).\n\n## Up and running\n\nBasic knowledge of AWS, Kubernetes and Terraform is required to use this script to create an Kubernetes cluster in AWS. To setup EKS with these scripts you need to have the following already setup:\n- [aws-cli](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html)\n- [terraform](https://www.terraform.io/downloads.html)\n- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)\n- [aws-sudo](https://github.com/makethunder/awsudo)\n- [aws-iam-authenticator](https://docs.aws.amazon.com/eks/latest/userguide/install-aws-iam-authenticator.html)\n\n`aws-sudo` enables you to authenticate against AWS with a specific profile. This is particularly useful if you manage credentials for different AWS accounts on the same computer. Follow instructions on the [aws-sudo](https://github.com/makethunder/awsudo) page to setup a profile and call it the `eks-demo` profile.\n\nMake sure you have the latest version of `aws-cli` installed.\n\nThere are [detailed steps](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html) in AWS docs that walk you through how to properly setup credentials for `aws-cli`.\n\n## Commands\n\n| Command | Description |\n| ------- | ----------- |\n| `make init` | Initialize terraform. Must be run once. |\n| `make plan` | Plan changes to AWS infrastructure. |\n| `make apply` | Apply changes to AWS infrastructure. You will be prompted to proceed before actual changes are applied. This could take up to 10 minutes if you are doing this for the first time. |\n| `make update` | Automatically update your kube config in ~/.kube/config or the path set with environment variable `KUBECONFIG`. |\n| `make auth` | Add aws authentication details to local Kubernetes configuration |\n| `make output` | Retrieve output of the most recently applied changes. |\n| `make destroy` | Delete all infrastructure. |\n\n*Note* Until you run `make destroy`, you may continue to attract charges on your AWS account. Be sure to destroy infrastructure while you have no need for it.\n\n## Setting up the cluster\n\n- Run `make init`\n- Run `make all`\n\nIf the later command displays a table listing two pods, this means your setup was completed successfully.\n\nFeel free to open an issue should you face any challenges.\n\n# License\n\nMIT License\n\nCopyright (c) 2019 C A Boadu Jnr\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fekowcharles%2Faws-eks-terraform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fekowcharles%2Faws-eks-terraform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fekowcharles%2Faws-eks-terraform/lists"}