An open API service indexing awesome lists of open source software.

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.

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"