Terraform Notes
Useful Powershell Aliases
tplan: terraform plan with paginate with compact warning
function fun_tplan {terraform plan -no-color -compact-warnings | more} set-alias -name tplan -value fun_tplan
tapply: terraform apply with paginate, compact warning, and automate accept
function fun_tapply {terraform apply -auto-approve -no-color -compact-warnings | more} set-alias -name tapply -value fun_tapply
No comments:
Post a Comment