Created
December 3, 2020 21:19
-
-
Save mesmacosta/4485748895afb786ac31dbeb66a84715 to your computer and use it in GitHub Desktop.
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
| # After that, let's get Terraform started. | |
| # Run the following to pull in the providers. | |
| terraform init | |
| # With the providers downloaded and terraform variables set, | |
| # you're ready to use Terraform. Go ahead! | |
| # Plan first to validate the execution | |
| terraform plan -input=false -out=tfplan -var-file=".tfvars" | |
| # If successfull, execute it | |
| terraform apply tfplan |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment