Created
February 26, 2022 11:44
-
-
Save a-patel/922af358e853928c0c3223418edbdb07 to your computer and use it in GitHub Desktop.
Amazon EKS Terraform Workshop: Execution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# initialize terraform configuration | |
terraform init | |
# validate terraform configuration | |
terraform validate | |
# create terraform plan | |
terraform plan -out state.tfplan | |
# apply terraform plan | |
terraform apply state.tfplan | |
# cleanup | |
terraform destroy -auto-approve |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment