azd includes all outputs in .env after a customer runs azd up or azd provision. If you add all the outputs, customers do not need to manually edit the following:
AZD_PIPELINE_PROVIDER="github"
AZURE_ADMIN_PASSWORD="<THE JUMPHOST PASSWORD>"
AZURE_ADMIN_USERNAME="<THE JUMPHOST USERNAME>"
AZURE_APPLICATION_NAME="<AN APPLICATION NAME>"
AZURE_ENV_NAME="prod"
AZURE_FQDN="<THE FQDN OF THE SITE>"
AZURE_LOCATION="<AN AZURE DC REGION>"
AZURE_MARIADB_PASSWORD="<THE MARIADB PASSWORD>"
AZURE_PRINCIPAL_ID=""
AZURE_SUBSCRIPTION_ID="<YOUR AZURE SUBSCRIPTION ID>"
resourceGroupName="<THE RESOURCE GROUP NAME>"
Also, if default value is not found for a parameter, azd will prompt customer for input.
e.g., add in main.bicep, output AZURE_ADMIN_USERNAME string = adminUsername
For consistent - rename resourceGroupName to AZURE_RESOURCE_GROUP.
azd includes all outputs in
.env
after a customer runsazd up
orazd provision
. If you add all the outputs, customers do not need to manually edit the following:Also, if default value is not found for a parameter, azd will prompt customer for input.
output AZURE_ADMIN_USERNAME string = adminUsername