You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tired of typing Terraform init, vali...Tired of typing Terraform init, validate, apply? I've written this bash function to speed this up and implement some good practices.
1
# tf-iva - init, validate, plan, apply
2
functiontf-iva {
3
if [[ "${1}"=~ ^(-h|--?help)$ ]];then
4
cat <<-EOT
5
tf-iva - Terraform init, validate, plan, apply by Joe Heaton.dev