From the course: Azure DevOps: Continuous Delivery with YAML Pipelines

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Deploying Bicep

Deploying Bicep

- [Instructor] So far we've been able to go out and work with variables. The next thing we wanna do is talk about something that's pretty typical, which is infrastructure as code, which is a deployment place where we put our applications that we're gonna run in the cloud. I've added a branch, and I've added some code for Bicep template to deploy a app service with slots. And while going into the code is a little bit deep here, I'll just show you that there's a couple of files I created. And those are the actual infrastructure files, myYaml-Slots.bicep, which has got all of the code that I need for being able to go out and creating a deployment into a resource group. There's some parameters that are gonna get sent as well, and I've already set these up. But what I wanna do is I want to go into my pipeline and use these to do the deployment of infrastructure as code. So, inside of my YAML pipeline definition, I'm in the…

Contents