Skip to content

Commit d39ed38

Browse files
committed
update1
1 parent bf2d861 commit d39ed38

File tree

21 files changed

+30
-30
lines changed

21 files changed

+30
-30
lines changed

learn-pr/achievements/learn.azure.bicep-conditions-loops.badge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
achievementUid: learn.azure.bicep-conditions-loops.badge
33
metadata:
44
title: >-
5-
Microsoft Badge: Build flexible Bicep templates by using conditions and
5+
Microsoft Badge: Build flexible Bicep files by using conditions and
66
loops was issued by Microsoft
77
socialImageUrl: /training/achievements/bicep/bicep-conditions-loops-social.png
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
### YamlMime:AchievementDetail
2-
achievementUid: learn.azure.build-reusable-bicep-templates-parameters.badge
2+
achievementUid: learn.azure.build-reusable-bicep-files-parameters.badge
33
metadata:
44
title: >-
5-
Microsoft Badge: Build reusable Bicep templates by using parameters was
5+
Microsoft Badge: Build reusable Bicep files by using parameters was
66
issued by Microsoft
77
socialImageUrl: >-
8-
/training/achievements/bicep/build-reusable-bicep-templates-parameters-social.png
8+
/training/achievements/bicep/build-reusable-bicep-files-parameters-social.png

learn-pr/aspnetcore/customize-dotnet-aspire-existing-resources/includes/5-create-azure-resources-bicep.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ azd provision
7878
azd deploy
7979
```
8080

81-
## Using custom Bicep templates
81+
## Using custom Bicep files
8282

8383
You've seen that you can use the `azd infra synth` command to generate the Bicep files necessary to deploy a .NET Aspire app. You can then modify those Bicep files to alter the deployment. But you can also intervene in the creation of Bicep files earlier, during coding by linking to a Bicep file in the app host project.
8484

@@ -132,4 +132,4 @@ In the above code, notice that:
132132
- [What is Bicep?](/azure/azure-resource-manager/bicep/overview)
133133
- [Understand the structure and syntax of Bicep files](/azure/azure-resource-manager/bicep/file)
134134
- [Generate Bicep from .NET Aspire project model](/dotnet/aspire/deployment/azure/aca-deployment-azd-in-depth#generate-bicep-from-net-aspire-project-model)
135-
- [Use custom Bicep templates](/dotnet/aspire/deployment/azure/custom-bicep-templates)
135+
- [Use custom Bicep files](/dotnet/aspire/deployment/azure/custom-bicep-templates)

learn-pr/aspnetcore/customize-dotnet-aspire-existing-resources/includes/8-summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Now that you've completed this module, you can:
1111

1212
- [Use Application Insights for .NET Aspire telemetry](/dotnet/aspire/deployment/azure/application-insights)
1313
- [Tutorial: Deploy a .NET Aspire project with a Redis Cache to Azure](/dotnet/aspire/caching/caching-integrations-deployment)
14-
- [Use custom Bicep templates](/dotnet/aspire/deployment/azure/custom-bicep-templates)
14+
- [Use custom Bicep files](/dotnet/aspire/deployment/azure/custom-bicep-templates)

learn-pr/azure/arm-template-specs/includes/3-create-publish-template-spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ After your template is written, instead of submitting the template to Azure for
4444

4545
::: zone pivot="bicepcli,biceppowershell"
4646

47-
[!INCLUDE [Note that Bicep template specs are not roundtrippable](./code/note-bicep-roundtrip.md)]
47+
[!INCLUDE [Note that Bicep file specs are not roundtrippable](./code/note-bicep-roundtrip.md)]
4848

4949
::: zone-end
5050

learn-pr/azure/arm-template-specs/includes/6-manage-template-spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ After you publish a template as a template spec, you can *export* it. Exporting
144144

145145
::: zone pivot="bicepcli,biceppowershell"
146146

147-
[!INCLUDE [Note that Bicep template specs are not roundtrippable](./code/note-bicep-roundtrip.md)]
147+
[!INCLUDE [Note that Bicep file specs aren't roundtrippable](./code/note-bicep-roundtrip.md)]
148148

149149
::: zone-end
150150

learn-pr/azure/authenticate-azure-deployment-pipeline-service-principals/7-knowledge-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ quiz:
4646
- content: Your client can authenticate, but it receives a warning that the key has expired.
4747
isCorrect: false
4848
explanation: After a service principal's key has expired, the key can't be used to authenticate. You'll need to issue a new key.
49-
- content: You're creating a service principal to run a pipeline. The pipeline deploys a Bicep template that creates a single storage account. Which of the following options has the least privileged access that you need for your pipeline?
49+
- content: You're creating a service principal to run a pipeline. The pipeline deploys a Bicep file that creates a single storage account. Which of the following options has the least privileged access that you need for your pipeline?
5050
choices:
5151
- content: |
5252
**Role definition:** Contributor<br />

learn-pr/azure/authenticate-azure-deployment-pipeline-service-principals/includes/1-introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Deployment pipelines need to communicate with Azure so they can create and confi
22

33
## Example scenario
44

5-
Suppose you're responsible for deploying and configuring the Azure infrastructure at a toy company. You've created a Bicep template to deploy your company's website. Until now, you've been deploying it from your own computer by using command-line tools. You've decided to move the deployment into a pipeline.
5+
Suppose you're responsible for deploying and configuring the Azure infrastructure at a toy company. You've created a Bicep file to deploy your company's website. Until now, you've been deploying it from your own computer by using command-line tools. You've decided to move the deployment into a pipeline.
66

77
One of your colleagues has told you that you'll need to set up a service principal for the deployment pipeline. You need to understand what this is, and then set it up so you can deploy your company's website.
88

@@ -21,7 +21,7 @@ By the end of this module, you'll have an understanding of service principals an
2121

2222
You should be familiar with:
2323

24-
- Creating and deploying basic Bicep templates, including modules.
24+
- Creating and deploying basic Bicep files, including modules.
2525
- Azure, including the Azure portal, subscriptions, resource groups, and resource definitions.
2626

2727
To follow along with the exercises in the module, you'll need:

0 commit comments

Comments
 (0)