Deploying infrastructure alongside our application code
So far, we’ve created modules for reuse. In this section, we’ll focus on creating an implementation of these new modules. By taking a module-first mindset approach, you will work toward building a reusable library of modules for you and your team to use. You will find that most implementations will only be the calling of the module and provide a couple of parameters for use, leaving the naming convention policies to be managed by the module.
Before we jump into this, we have a bit of cleanup work to do.
The teardown
First, we’ll need to destroy the container registry we created previously. To do this, open the resource in Azure, click the Delete button, and click Yes:
Figure 7.6 – Confirm deletion of the resource
Through this hands-on experience, we’ll gain practical knowledge of Bicep’s capabilities and how it interacts with Azure services. By exploring...