diff --git a/.github/workflows/eshoponweb-cicd.yml b/.github/workflows/eshoponweb-cicd.yml index dbe93de65..7657f24c8 100644 --- a/.github/workflows/eshoponweb-cicd.yml +++ b/.github/workflows/eshoponweb-cicd.yml @@ -1,15 +1,15 @@ name: eShopOnWeb Build and Test #Triggers (uncomment line below to use it) -#on: [push, workflow_dispatch] +on: workflow_dispatch #Environment variables https://docs.github.com/en/actions/learn-github-actions/environment-variables env: - RESOURCE-GROUP: rg-eshoponweb-NAME - LOCATION: westeurope + RESOURCE-GROUP: rg-eshoponweb-eastus2 + LOCATION: eastus2 TEMPLATE-FILE: infra/webapp.bicep - SUBSCRIPTION-ID: YOUR-SUBS-ID - WEBAPP-NAME: eshoponweb-webapp-NAME + SUBSCRIPTION-ID: 3cceca46-d11c-4373-8cb3-a5404bb358c0 + WEBAPP-NAME: devops-webapp-eastus2-53528580 jobs: diff --git a/infra/webapp.bicep b/infra/webapp.bicep index 9e64fbac1..b85e27b45 100644 --- a/infra/webapp.bicep +++ b/infra/webapp.bicep @@ -1,5 +1,5 @@ param webAppName string = uniqueString(resourceGroup().id) // Generate unique String for web app name -param sku string = 'B1' // The SKU of App Service Plan +param sku string = 'S1' // The SKU of App Service Plan param location string = resourceGroup().location var appServicePlanName = toLower('AppServicePlan-${webAppName}')