Search code examples
automationazure-cliazure-static-web-app

static web app auto generated url extraction with CLI


Is there a command I can use in Azure CLI to pull the auto generated URL Azure provides when a static web app is created? I need it for automation purposes as at the moment the pipeline needs manual intervention to obtain it. I have searched and searched so its either not possible or I'm missing something.


Solution

  • enter image description here

    To get the auto-generated URL of static web app, the following GitHub Az CLI SWA Doc reference and commands I used:

    az staticwebapp show --name krishtestapp-swa  --query "defaultHostname"
    

    This command gives the host URL of Azure Static web App.

    az staticwebapp show --name krishtestapp-swa  --query "repositoryUrl"
    

    This command gives the host URL of Azure Static Web App Original Repository.