Where do I find the values for vars. AZURE_CLIENT_ID, vars.AZURE_TENANT_ID and secrets.AZURE_CREDENTIALS?
AZURE_CLIENT_ID and AZURE_TENANT_ID are related to your Azure Active Directory (Microsoft Entra ID) application. You can find these values in the Azure portal:
- Sign in to the Azure portal.
- Go to Azure Active Directory (Microsoft Entra ID).
- Select App registrations.
- Find your App that you want the Client ID for.
Once you find your concerned Service Principal , you can get its ClientID, TenantID and Secret ID as shown below:
If you don't have an app created, you can create an AAD app from here: Quickstart: Register an app in the Microsoft identity platform - Microsoft identity platform | Microsoft Learn
Why is there a CLIENT_ID and TENANT_ID? Should I be able to look at a new Azure AD app registration somewhere?
CLIENT_ID and TENANT_ID are used for authentication with Azure AD. The CLIENT_ID is the unique identifier of your application within your directory, and the TENANT_ID is the unique identifier of your Azure Active Directory instance. You may view these details in the Azure portal under Azure Active Directory (Microsoft Entra ID) > App registrations as shown in above screenshot.
What does “azd provision” do? Where is the documentation for “azd provision” and “azd deploy”?
azd provision is a command that provisions the necessary Azure resources for your application.The documentation for these commands can be found on the Azure Developer CLI reference page. More info here.
Which one of these commands copies the javascript code to the static web site?
The azd deploy command is responsible for deploying your application’s code, which includes copying the JavaScript code to the static website.
Where is the resource group and name for the static web site stored?
The resource group and name for the static web app are not explicitly stored but are part of the Azure resources provisioned for your application.
When you create a Static Web App, you specify the resource group and name for the Static Web App. To fetch this, you Sign in to the Azure portal.
Navigate to the Static Web Apps service.
Select your Static Web App.
The Overview page will display the details of your Static Web App, including the resource group and name. Refer this doc
Apologies you faced issues while posting a comment/leveraging Q&A, I'll relay the feedback to our platform team.
(I'll convert comment to answer)
-----
If the answer helped (pointed, you in the right direction) > please click Accept Answer