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

  1. In your terminal, run the following command:

     terraform plan
    

    This command tells you how Terraform will build your infrastructure.

    Always review the plan before you create or edit resources. This is your chance to catch any misconfigurations that might harm or accidentally delete your resources.

  2. 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

Updated: