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.
1616The syntax for importing Bicep extensions is:
1717
1818``` bicep
19- extionsion ' <extension-name>'
19+ extionsion <extension-name>
2020```
2121
2222The syntax for importing Bicep extensions, which require configuration is:
2323
2424``` bicep
25- extension ' <extension-name>' with {
25+ extension <extension-name> with {
2626 <extension-properties>
2727}
2828```
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ The following sample imports the Kubernetes extension:
4848@secure()
4949param kubeConfig string
5050
51- extension ' kubernetes' with {
51+ extension kubernetes with {
5252 namespace: 'default'
5353 kubeConfig: kubeConfig
5454} as k8s
You can’t perform that action at this time.
0 commit comments