{"id":14957760,"url":"https://github.com/onlydole/eks-in-action","last_synced_at":"2026-03-06T19:35:42.966Z","repository":{"id":37083705,"uuid":"345485764","full_name":"onlydole/eks-in-action","owner":"onlydole","description":"🎤 Creating an EKS cluster and VPC in AWS","archived":false,"fork":false,"pushed_at":"2024-12-16T15:47:14.000Z","size":74,"stargazers_count":47,"open_issues_count":6,"forks_count":12,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-13T02:51:17.365Z","etag":null,"topics":["aws","aws-eks","eks","eks-cluster","hashicorp","hashicorp-terraform"],"latest_commit_sha":null,"homepage":"","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/onlydole.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,"zenodo":null}},"created_at":"2021-03-08T00:24:26.000Z","updated_at":"2025-11-30T20:49:30.000Z","dependencies_parsed_at":"2025-05-09T00:09:28.455Z","dependency_job_id":"fa76496c-7b62-47c3-a2c7-1205cb741992","html_url":"https://github.com/onlydole/eks-in-action","commit_stats":{"total_commits":34,"total_committers":4,"mean_commits":8.5,"dds":0.5294117647058824,"last_synced_commit":"8e26ccd3e49c7d8f07c45a069c7d34d765d76973"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/onlydole/eks-in-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onlydole%2Feks-in-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onlydole%2Feks-in-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onlydole%2Feks-in-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onlydole%2Feks-in-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/onlydole","download_url":"https://codeload.github.com/onlydole/eks-in-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/onlydole%2Feks-in-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30193651,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"ssl_error","status_checked_at":"2026-03-06T18:57:34.882Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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","aws-eks","eks","eks-cluster","hashicorp","hashicorp-terraform"],"created_at":"2024-09-24T13:15:32.683Z","updated_at":"2026-03-06T19:35:42.926Z","avatar_url":"https://github.com/onlydole.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EKS in Action\n\n\u003e Reading material and code examples\n\nCreating an EKS cluster and VPC in AWS.\n\n_Note:_ You will need to ensure `wget` is installed locally for the EKS module to validate your EKS cluster's endpoint.\n\n## Table of Contents\n\n- [EKS in Action](#eks-in-action)\n  - [Table of Contents](#table-of-contents)\n  - [Prerequisites](#prerequisites)\n  - [Reading material](#reading-material)\n    - [HashiCorp Configuration Language](#hashicorp-configuration-language)\n  - [First Steps](#first-steps)\n  - [Next Steps](#next-steps)\n    - [Code Quality](#code-quality)\n    - [Modules](#modules)\n  - [Author Information](#author-information)\n  - [License](#license)\n\n## Prerequisites\n\nAs part of this workshop, you will be using [HashiCorp Terraform](https://www.terraform.io) and [Amazon Web Services](https://aws.amazon.com).\n\nFor instructions on how to install Terraform. please see our [Learn Guide](https://learn.hashicorp.com/terraform/getting-started/install.html).\n\nOn that page, you will find instructions for macOS (using `brew`), Windows (using `choco`) as well as a manual installation path.\n\n## Reading material\n\nThis section is a collection of links that will help you make the most of today's session.\n\n### HashiCorp Configuration Language\n\n- repository: [hashicorp/hcl](https://github.com/hashicorp/hcl/tree/hcl2)\n- intermediate HCL: [Configuration Languages in HCL2](https://www.hashicorp.com/resources/intermediate-hcl-configuration-languages-in-hcl2/)\n\n## First Steps\n\n- CLI commands [terraform.io/docs/commands/index.html](https://www.terraform.io/docs/commands/index.html)\n- variables and type constraints: [terraform.io/docs/configuration/variables.html](https://www.terraform.io/docs/configuration/variables.html#type-constraints)\n- variable definition files: [terraform.io/docs/configuration/variables.html](https://www.terraform.io/docs/configuration/variables.html#variable-definitions-tfvars-files)\n- information about Terraform State: [terraform.io/docs/state/index.html](https://www.terraform.io/docs/state/index.html)\n\n## Next Steps\n\n- Learn Guide: Build infrastructure [learn.hashicorp.com/terraform/getting-started/build](https://learn.hashicorp.com/terraform/getting-started/build)\n- Build your own AMIs with Packer: [packer.io/docs/builders/amazon/](https://www.packer.io/docs/builders/amazon/)\n\n### Code Quality\n\nBefore `plan` and `apply`, always clean up your code:\n\n- use [terraform fmt](https://www.terraform.io/docs/commands/fmt.html) to rewrite Terraform configuration files to a canonical format and style.\n- use [terraform validate](https://www.terraform.io/docs/commands/validate.html) to validate the configuration syntax and internal consistency\n- use [pre-commit](https://pre-commit.com) to run more checks\n  - community member [@antonbabenko](https://github.com/antonbabenko/) built and maintains [pre-commit-terraform](https://github.com/antonbabenko/pre-commit-terraform)\n\n### Modules\n\n- use modules as building blocks\n- module documentation: [terraform.io/docs/configuration/modules.html](https://www.terraform.io/docs/configuration/modules.html)\n- module registry: [registry.terraform.io](https://registry.terraform.io)\n- Learn Guide: Modules on [learn.hashicorp.com/terraform/modules/modules-overview](https://learn.hashicorp.com/terraform/modules/modules-overview)\n\n## Author Information\n\nThis repository is maintained by [Taylor Dolezal](https://github.com/onlydole) .\n\n## License\n\nLicensed under the Apache License, Version 2.0 (the \"License\").\n\nYou may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0).\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an _\"AS IS\"_ basis, without WARRANTIES or conditions of any kind, either express or implied.\n\nSee the License for the specific language governing permissions and limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonlydole%2Feks-in-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fonlydole%2Feks-in-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fonlydole%2Feks-in-action/lists"}