- Terraform
- Docker
terraform --version (to check terraform version)
docker -v (to check docker version) terraform init (Initialing Terraform working directory(TASK-3)) terraform plan
terraform apply -auto-approve (Apply configuration to create resources)
docker ps (Check running Docker containers)terraform state list (Show tracked resources)
terraform destroy -auto-approve (Destroy the resources which are created)



