https://github.com/ahmedalaa14/terraform-eks
Automate the provisioning of an Amazon EKS (Elastic Kubernetes Service) cluster using Terraform.
https://github.com/ahmedalaa14/terraform-eks
eks-cluster terraform
Last synced: about 1 year ago
JSON representation
Automate the provisioning of an Amazon EKS (Elastic Kubernetes Service) cluster using Terraform.
- Host: GitHub
- URL: https://github.com/ahmedalaa14/terraform-eks
- Owner: ahmedalaa14
- Created: 2024-06-29T21:09:50.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-30T15:06:38.000Z (almost 2 years ago)
- Last Synced: 2025-02-01T17:42:32.267Z (over 1 year ago)
- Topics: eks-cluster, terraform
- Language: HCL
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### initialize
terraform init
### preview terraform actions
terraform plan
### apply configuration with variables
terraform apply -var-file terraform-dev.tfvars
### destroy a single resource
terraform destroy -target aws_vpc.myapp-vpc
### destroy everything fromtf files
terraform destroy
### show resources and components from current state
terraform state list
### show current state of a specific resource/data
terraform state show aws_vpc.myapp-vpc
### set avail_zone as custom tf environment variable - before apply
export TF_VAR_avail_zone="eu-west-3a"