Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1.56 KB

File metadata and controls

32 lines (21 loc) · 1.56 KB

Challenge 12 - Deploy an Azure App Service

< Previous Challenge - Home - Next Challenge >

Introduction

The goals of this challenge include understanding:

  • How to deploy Azure App Service plan and App Service website using Bicep.
  • How to leverage Azure App Service source code integration to automatically deploy a sample app from GitHub.

Description

This challenge is all about Azure App Service. During the challenge, you will use Bicep to create an Azure App Service Plan and App Service website.

  • Provision an Azure App Service, using a Linux web app with linuxFxVersion set to NODE|14-LTS
  • Within the App Service, deploy the application found at the url https://github.com/Azure-Samples/nodejs-docs-hello-world
    • hint: use this with the repoUrl parameter

Success Criteria

  • Demonstrate that your application is running by launching the website in your browser
    • show https://<sitename>
    • show https://<sitename>/api
    • show https://<sitename>/api/accounts/jondoe

Learning Resources