Skip to content

Commit ef2de71

Browse files
committed
minor edits
1 parent 71ceb98 commit ef2de71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-resource-manager/bicep/bicep-extensibility-kubernetes-provider.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.date: 02/21/2023
77

88
# Bicep extensibility Kubernetes provider (Preview)
99

10-
The Kubernetes provider allows you to create Kubernetes resources directly with Bicep. Anything you can deploy with the [Kubernetes command-line client (kubectl)]https://kubernetes.io/docs/reference/kubectl/kubectl/ and a [Kubernetes manifest file](../../aks/concepts-clusters-workloads.md#deployments-and-yaml-manifests) can alternatively be done with a Bicep deployment.
10+
The Kubernetes provider allows you to create Kubernetes resources directly with Bicep. Bicep can deploy anything that can be deployed with the [Kubernetes command-line client (kubectl)](https://kubernetes.io/docs/reference/kubectl/kubectl/) and a [Kubernetes manifest file](../../aks/concepts-clusters-workloads.md#deployments-and-yaml-manifests).
1111

1212
## Enable the preview feature
1313

@@ -23,8 +23,8 @@ This preview feature can be enabled by configuring the [bicepconfig.json](./bice
2323

2424
## Import Kubernetes provider
2525

26-
In order to safely pass secrets for the Kubernetes deployment, you must invoke the Kubernetes code with a [Bicep module](./modules.md) so that the parameter can be passed as a secret.
27-
To import the Kubernetes provider, use the [import statement](./bicep-import-providers.md). After importing the provider, you can refactor the Bicep module file as usual, such as by using variables, parameters, and output. By contract, the Kubernetes manifest in YML does not include any programmability support.
26+
To safely pass secrets for the Kubernetes deployment, you must invoke the Kubernetes code with a Bicep module and pass the parameter as a secret.
27+
To import the Kubernetes provider, use the [import statement](./bicep-import-providers.md). After importing the provider, you can refactor the Bicep module file as usual, such as by using variables, parameters, and output. By contract, the Kubernetes manifest in YML doesn't include any programmability support.
2828

2929
The following sample imports the Kubernetes provider:
3030

0 commit comments

Comments
 (0)