Deploy your resources with Terraform
After you’ve defined your resources, Terraform creates them for you in Azure. It determines in what order resources need to be created. It tracks your resources for you, so you can change them at any time without starting over.
This page describes how to review your Terraform plan and deploy your resources.
Run the Terraform command
-
In your terminal, run the following command:
terraform plan
This command tells you how Terraform will build your infrastructure.
-
After you review the plan, run the following command:
terraform apply -auto-approve
This creates your infrastructure. This may take a few minutes.
Confirmation screenshot TBD.
Troubleshooting
TBD
Learn more
TBD