Skip to content

Commit 9fccf42

Browse files
committed
updates3
1 parent 30beb1d commit 9fccf42

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

learn-pr/azure/build-first-bicep-file/includes/4-exercise-define-resources-bicep-file.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[!INCLUDE [Sandbox explanation](../../includes/azure-file-exercise-sandbox-subscription.md)]
1+
[!INCLUDE [Sandbox explanation](../../includes/azure-template-exercise-sandbox-subscription.md)]
22

33
For your toy-launch website, you decide to first create a proof of concept by creating a basic Bicep file. In this exercise, you'll create a storage account, Azure App Service plan, and app. Later, you'll modify the file to make it more reusable.
44

@@ -11,7 +11,7 @@ During the process, you'll:
1111
> - Add an App Service plan and app to the file.
1212
> - Provision the infrastructure again to see the new resources.
1313
14-
[!INCLUDE [Install the Bicep extension for Visual Studio Code](../../includes/azure-file-bicep-exercise-vscode-extension.md)]
14+
[!INCLUDE [Install the Bicep extension for Visual Studio Code](../../includes/azure-template-bicep-exercise-vscode-extension.md)]
1515

1616
## Create a Bicep file that contains a storage account
1717

@@ -25,7 +25,7 @@ During the process, you'll:
2525

2626
1. Add the following Bicep code into the file. You'll deploy the file soon. It's a good idea to type the code yourself instead of copying and pasting so you can see how the tooling helps you to write your Bicep files.
2727

28-
:::code language="bicep" source="code/4-file.bicep" range="1-11":::
28+
:::code language="bicep" source="code/4-template.bicep" range="1-11":::
2929

3030
> [!TIP]
3131
> Bicep is strict about where you put line breaks, so make sure you don't put line breaks in different places than listed here.
@@ -43,7 +43,7 @@ During the process, you'll:
4343

4444
::: zone pivot="cli"
4545

46-
[!INCLUDE [Bootstrapping instructions for first Bicep exercise - CLI](../../includes/azure-file-bicep-exercise-sandbox-deploy-cli.md)]
46+
[!INCLUDE [Bootstrapping instructions for first Bicep exercise - CLI](../../includes/azure-template-bicep-exercise-sandbox-deploy-cli.md)]
4747

4848
### Deploy the file to Azure
4949

@@ -59,7 +59,7 @@ You'll see `Running...` in the terminal.
5959

6060
::: zone pivot="powershell"
6161

62-
[!INCLUDE [Bootstrapping instructions for first Bicep exercise - PowerShell](../../includes/azure-file-bicep-exercise-sandbox-deploy-powershell.md)]
62+
[!INCLUDE [Bootstrapping instructions for first Bicep exercise - PowerShell](../../includes/azure-template-bicep-exercise-sandbox-deploy-powershell.md)]
6363

6464
### Deploy the file to Azure
6565

learn-pr/azure/build-first-bicep-file/includes/6-exercise-add-parameters-variables-bicep-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ During the process, you'll:
2525

2626
Also notice that you're using a variable for the Azure App Service plan name, but you're using parameters for the other names. Storage accounts and App Service apps need globally unique names, but App Service plan names need to be unique only within their resource group. This difference means it's not a concern to use the same App Service plan name across different deployments, as long as the deployments are all going into different resource groups.
2727

28-
[!INCLUDE [Sandbox location note](../../includes/azure-file-bicep-exercise-sandbox-location.md)]
28+
[!INCLUDE [Sandbox location note](../../includes/azure-template-bicep-exercise-sandbox-location.md)]
2929

3030
1. Find the places within the resource definitions where the `location` and `name` properties are set, and update them to use the parameter values. After you're finished, the resource definitions within your Bicep file should look like this:
3131

learn-pr/azure/create-composable-bicep-files-using-modules/includes/2-create-use-bicep-modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Bicep modules help you address these challenges by splitting your code into smal
1414

1515
After you've created a module, you can reuse it in multiple Bicep files, even if the files are for different projects or workloads. For example, when you build out one solution, you might create separate modules for the app components, the database, and the network-related resources. Then, when you start to work on another project with similar network requirements, you can reuse the relevant module.
1616

17-
:::image type="content" source="../../includes/media/bicep-templates-modules.png" alt-text="Diagram that shows a template referencing three modules: application, database, and networking. The networking module is then reused in another template." border="false":::
17+
:::image type="content" source="../../includes/media/bicep-files-modules.png" alt-text="Diagram that shows a template referencing three modules: application, database, and networking. The networking module is then reused in another template." border="false":::
1818

1919
You can even share modules within your team, within your organization, or with the Azure community. You'll learn more about sharing Bicep modules in a future Microsoft Learn module.
2020

0 commit comments

Comments
 (0)