Skip to content

Commit dcdf10b

Browse files
committed
more revisions to toc
1 parent cdac4f6 commit dcdf10b

File tree

3 files changed

+62
-66
lines changed

3 files changed

+62
-66
lines changed

articles/azure-resource-manager/bicep/existing-resource.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Declare resources in Bicep
3-
description: Describes how to declare resources to deploy in Bicep.
2+
title: Reference existing resource in Bicep
3+
description: Describes how to reference a resource that already exists.
44
author: mumian
55
ms.author: jgao
66
ms.topic: conceptual
7-
ms.date: 11/12/2021
7+
ms.date: 02/03/2022
88
---
99

1010
# Existing resources

articles/azure-resource-manager/bicep/resource-dependencies.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Declare resources in Bicep
3-
description: Describes how to declare resources to deploy in Bicep.
2+
title: Set resource dependencies in Bicep
3+
description: Describes how to specify the order resources are deployed.
44
author: mumian
55
ms.author: jgao
66
ms.topic: conceptual
7-
ms.date: 11/12/2021
7+
ms.date: 02/03/2022
88
---
99

1010
# Resource dependencies in Bicep

articles/azure-resource-manager/bicep/toc.yml

Lines changed: 56 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
- name: Frequently asked questions
1111
href: frequently-asked-questions.yml
1212
- name: Install
13-
expanded: true
1413
items:
1514
- name: Install Bicep tools
1615
href: install.md
@@ -37,10 +36,14 @@
3736
- name: Microsoft Learn - Bicep
3837
href: learn-bicep.md
3938
- name: Concepts
39+
expanded: true
4040
items:
4141
- name: Bicep file
4242
href: file.md
4343
displayName: parameters,variables,resources,outputs,condition,syntax
44+
- name: Data types
45+
href: data-types.md
46+
displayName: supported types,arrays,booleans,integers,objects,strings,secure
4447
- name: Parameters (param)
4548
href: parameters.md
4649
displayName: decorators,secure,objects,constraints
@@ -121,51 +124,20 @@
121124
href: operators-logical.md
122125
- name: Numeric operators
123126
href: operators-numeric.md
124-
- name: Data types
125-
href: data-types.md
126-
displayName: supported types,arrays,booleans,integers,objects,strings,secure
127127
- name: How to
128128
items:
129129
- name: Author
130130
items:
131-
- name: Create private module registry
131+
- name: Best practices
132+
href: best-practices.md
133+
- name: Private module registry
132134
href: private-module-registry.md
133135
displayName: module registry,private module registry
134-
- name: Add deployment script
136+
- name: Deployment script
135137
href: deployment-script-bicep.md
136-
- name: Define template specs
138+
- name: Template specs
137139
href: template-specs.md
138-
- name: Apply linter
139-
items:
140-
- name: Linter
141-
href: linter.md
142-
- name: Linter rules
143-
items:
144-
- name: Admin user name not literal
145-
href: linter-rule-admin-username-should-not-be-literal.md
146-
- name: No hardcoded environment URLs
147-
href: linter-rule-no-hardcoded-environment-urls.md
148-
- name: No unnecessary dependsOn entries
149-
href: linter-rule-no-unnecessary-dependson.md
150-
- name: No unused parameters
151-
href: linter-rule-no-unused-parameters.md
152-
- name: No unused variables
153-
href: linter-rule-no-unused-variables.md
154-
- name: Outputs should not contain secrets
155-
href: linter-rule-outputs-should-not-contain-secrets.md
156-
- name: Prefer interpolation
157-
href: linter-rule-prefer-interpolation.md
158-
- name: Secure parameter default
159-
href: linter-rule-secure-parameter-default.md
160-
- name: Simplify interpolation
161-
href: linter-rule-simplify-interpolation.md
162-
- name: Use protectedSettings for commandToExecute secrets
163-
href: linter-rule-use-protectedsettings-for-commandtoexecute-secrets.md
164-
- name: Use stable VM image
165-
href: linter-rule-use-stable-vm-image.md
166-
- name: Implement best practices
167-
href: best-practices.md
168-
- name: Use patterns
140+
- name: Patterns
169141
items:
170142
- name: Configuration set
171143
href: patterns-configuration-set.md
@@ -175,36 +147,60 @@
175147
href: patterns-name-generation.md
176148
- name: Shared variable file
177149
href: patterns-shared-variable-file.md
150+
- name: Common scenarios
151+
items:
152+
- name: Access control
153+
href: scenarios-rbac.md
154+
- name: Secrets
155+
href: scenarios-secrets.md
156+
- name: Virtual networks
157+
href: scenarios-virtual-networks.md
178158
- name: Provide parameters
179159
items:
180-
- name: Create parameter file
160+
- name: Parameter file
181161
href: parameter-files.md
182-
- name: Pass sensitive values
162+
- name: Sensitive values
183163
displayName: key vault
184164
href: key-vault-parameter.md
185-
- name: Use common scenarios
165+
- name: Validate file
186166
items:
187-
- name: Access control
188-
href: scenarios-rbac.md
189-
- name: Secrets
190-
href: scenarios-secrets.md
191-
- name: Virtual networks
192-
href: scenarios-virtual-networks.md
167+
- name: Linter
168+
href: linter.md
169+
- name: Linter rules
170+
items:
171+
- name: Admin user name not literal
172+
href: linter-rule-admin-username-should-not-be-literal.md
173+
- name: No hardcoded environment URLs
174+
href: linter-rule-no-hardcoded-environment-urls.md
175+
- name: No unnecessary dependsOn entries
176+
href: linter-rule-no-unnecessary-dependson.md
177+
- name: No unused parameters
178+
href: linter-rule-no-unused-parameters.md
179+
- name: No unused variables
180+
href: linter-rule-no-unused-variables.md
181+
- name: Outputs should not contain secrets
182+
href: linter-rule-outputs-should-not-contain-secrets.md
183+
- name: Prefer interpolation
184+
href: linter-rule-prefer-interpolation.md
185+
- name: Secure parameter default
186+
href: linter-rule-secure-parameter-default.md
187+
- name: Simplify interpolation
188+
href: linter-rule-simplify-interpolation.md
189+
- name: Use protectedSettings for commandToExecute secrets
190+
href: linter-rule-use-protectedsettings-for-commandtoexecute-secrets.md
191+
- name: Use stable VM image
192+
href: linter-rule-use-stable-vm-image.md
193193
- name: Deploy
194194
items:
195-
- name: Predeployment checks
196-
items:
197-
- name: What-if deployment
198-
href: deploy-what-if.md
199-
displayName: whatif, what if
200-
- name: Deployment commands
201-
items:
202-
- name: Deploy - CLI
203-
href: deploy-cli.md
204-
- name: Deploy - PowerShell
205-
href: deploy-powershell.md
206-
- name: Deploy - Cloud Shell
207-
href: deploy-cloud-shell.md
195+
- name: What-if check
196+
href: deploy-what-if.md
197+
displayName: whatif, what if
198+
- name: Deploy - CLI
199+
href: deploy-cli.md
200+
- name: Deploy - PowerShell
201+
href: deploy-powershell.md
202+
- name: Deploy - Cloud Shell
203+
href: deploy-cloud-shell.md
208204
- name: Configure settings
209205
items:
210206
- name: Bicep config file

0 commit comments

Comments
 (0)