This is a scenario for creating a new user and group in Microsoft Entra ID.
# Move to the scenario directory
cd infra/scenarios/create_user_group
# Log in to Azure
az login
# (Optional) Confirm the details for the currently logged-in user
az ad signed-in-user show
# Set environment variables
export ARM_SUBSCRIPTION_ID=$(az account show --query id --output tsv)
# Initialize the Terraform configuration.
terraform init
# Deploy the infrastructure
terraform apply -auto-approve
# Destroy the infrastructure
terraform destroy -auto-approve