Created
November 14, 2024 00:21
-
-
Save langheran/990ec7b9f5f572687e97c172395e24c7 to your computer and use it in GitHub Desktop.
Terraform Commands
This file contains hidden or 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
@echo off | |
terraform %* |
This file contains hidden or 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
@echo off | |
setlocal | |
@REM set TF_LOG=DEBUG | |
terraform apply -auto-approve %* | |
endlocal |
This file contains hidden or 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
@echo off | |
setlocal | |
@REM set TF_LOG=DEBUG | |
terraform plan %* | |
endlocal |
This file contains hidden or 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
@echo off | |
terraform apply -auto-approve -replace="%*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment