Skip to content

Commit 8e56a22

Browse files
committed
update
1 parent cd9155e commit 8e56a22

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

articles/azure-resource-manager/bicep/data-types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -437,13 +437,13 @@ The union type has some limitations:
437437

438438
You can use the union type syntax in [user-defined data types](./user-defined-data-types.md).
439439

440-
## Nullable Types
440+
## Nullable types
441441

442442
You can make any primitive or complex type nullable by appending a `?` to the type name. This allows the parameter, variable, or output to accept null as a valid value. For example:
443443

444444
```bicep
445-
param description string? = null
446-
param config object? = null
445+
output description string? = null
446+
output config object? = null
447447
output optionalValue int? = null
448448
```
449449

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ items:
293293
- name: Template best practices
294294
href: best-practices.md
295295
- name: Data types
296+
displayName: nullable types,union type,secure strings,secure objects,data type assignability
296297
href: data-types.md
297298
- name: Frequently asked questions
298299
href: frequently-asked-questions.yml

0 commit comments

Comments
 (0)