Skip to content

Latest commit

 

History

History

terraform

Terraform inspired from https://learn.hashicorp.com/terraform/aws/eks-intro

decrypt credentials

AWS_ACCESS_KEY_ID=*** AWS_SECRET_ACCESS_KEY=*** ./decrypt-terraform-credentials.sh

Terraform Wrapper Script

Usage: ./deploy [-v|t] [ACTION] [ENVIRONMENT]
 ./deploy [plan|plan-destroy|apply|destroy] [pipeline]
      -v Verbose Mode
      -t Trace Mode
      -h Help

build execution plan

For example build plan as follows:

./deploy plan pipeline

create infrastructure

For example apply as follows:

./deploy apply pipeline

update infrastructure

For example apply as follows:

./deploy apply pipeline

delete infrastructure

For example apply as follows:

./deploy plan-destroy pipeline
./deploy destroy pipeline

configure kubectl

./configure-kubectl.sh

authorise nodes to join kubernetes cluster

./deploy worker_nodes_role pipeline
./kubectl.sh "apply -f config_map_aws_auth.yaml"
./kubectl.sh "get nodes --watch"