File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
articles/azure-resource-manager/bicep Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ This article describes how to use Bicep extensions.
16
16
The syntax for importing Bicep extensions is:
17
17
18
18
``` bicep
19
- extionsion ' <extension-name>'
19
+ extionsion <extension-name>
20
20
```
21
21
22
22
The syntax for importing Bicep extensions, which require configuration is:
23
23
24
24
``` bicep
25
- extension ' <extension-name>' with {
25
+ extension <extension-name> with {
26
26
<extension-properties>
27
27
}
28
28
```
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ The following sample imports the Kubernetes extension:
48
48
@secure()
49
49
param kubeConfig string
50
50
51
- extension ' kubernetes' with {
51
+ extension kubernetes with {
52
52
namespace: 'default'
53
53
kubeConfig: kubeConfig
54
54
} as k8s
You can’t perform that action at this time.
0 commit comments