diff --git a/.github/workflows/infraworkflow.yml b/.github/workflows/infraworkflow.yml index 4a5de17..7bc8588 100644 --- a/.github/workflows/infraworkflow.yml +++ b/.github/workflows/infraworkflow.yml @@ -7,7 +7,7 @@ on: env: AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} # set this to your Azure Subscription Id - AZURE_RESOURCEGROUP_NAME: demo-webappsql-gh-actions # set this to your preferred resource group name + AZURE_RESOURCEGROUP_NAME: githubactions # set this to your preferred resource group name AZURE_WEBAPP_NAME: demo-webappsql-gh-actions-unique # set this to your preferred web app name ASP_NAME: demo-webappsql-gh-actions SQLSERVER_NAME: demo-webappsql-gh-actions-srv # set this to your preferred sql server name @@ -59,4 +59,4 @@ jobs: template: repo/templates/azuredeploy.json # Set this to the location of your template file parameters: repo/templates/azuredeploy.parameters.json webappName=${{env.AZURE_WEBAPP_NAME}} aspName=${{env.ASP_NAME}} sqlServerName=${{env.SQLSERVER_NAME}} databaseName=${{env.DATABASE_NAME}} sqlAdminLogin=${{env.SQLADMIN_LOGIN}} sqlAdminPass=${{env.SQLADMIN_PASS}} # Set this to the location of your parameters file -#TODO: Once the infrastructure got created, download web app publish profile of the staging slot and add it as a secret to the repo. It will be used by the workflow.yml file. \ No newline at end of file +#TODO: Once the infrastructure got created, download web app publish profile of the staging slot and add it as a secret to the repo. It will be used by the workflow.yml file. diff --git a/templates/azuredeploy.resourcegroup.parameters.json b/templates/azuredeploy.resourcegroup.parameters.json index 142ddfc..d972c23 100644 --- a/templates/azuredeploy.resourcegroup.parameters.json +++ b/templates/azuredeploy.resourcegroup.parameters.json @@ -6,7 +6,7 @@ "value": "GEN-UNIQUE" }, "rgLocation": { - "value": "centralus" + "value": "eastus" } } }