Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iam-veeramalla/terraform-eks
A sample repository to create EKS with VPC on AWS using Terraform.
https://github.com/iam-veeramalla/terraform-eks
aws eks terraform vpc
Last synced: 25 days ago
JSON representation
A sample repository to create EKS with VPC on AWS using Terraform.
- Host: GitHub
- URL: https://github.com/iam-veeramalla/terraform-eks
- Owner: iam-veeramalla
- License: apache-2.0
- Created: 2024-03-25T15:20:52.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-25T16:57:15.000Z (8 months ago)
- Last Synced: 2024-03-26T17:38:57.966Z (8 months ago)
- Topics: aws, eks, terraform, vpc
- Language: HCL
- Homepage: https://www.youtube.com/@AbhishekVeeramalla
- Size: 8.79 KB
- Stars: 5
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: security-groups.tf
Awesome Lists containing this project
README
# terraform-eks
A sample repository to create EKS on AWS using Terraform.### Install AWS CLI
As the first step, you need to install AWS CLI as we will use the AWS CLI (`aws configure`) command to connect Terraform with AWS in the next steps.
Follow the below link to Install AWS CLI.
```
https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html
```### Install Terraform
Next, Install Terraform using the below link.
```
https://developer.hashicorp.com/terraform/tutorials/aws-get-started/install-cli
```### Connect Terraform with AWS
Its very easy to connect Terraform with AWS. Run `aws configure` command and provide the AWS Security credentials as shown in the video.
### Initialize Terraform
Clone the repository and Run `terraform init`. This will intialize the terraform environment for you and download the modules, providers and other configuration required.
### Optionally review the terraform configuration
Run `terraform plan` to see the configuration it creates when executed.
### Finally, Apply terraform configuation to create EKS cluster with VPC
`terraform apply`