# Authenticate with Azure
az login --use-device-code
# Use desired Azure subscription
az account set --subscription <SUBSCRIPTION_ID_OR_NAME>
# initialize the project (FIRST TIME ONLY)
terraform init
# Provision the infrastructure
terraform apply
This assumes you've made some changes (eg provide another value for the image_tag
variable).
# Update the sample infrastructure
terraform apply
# Destroy the sample infrastructure
terraform destroy