diff --git a/README.md b/README.md index 9ea67db..927ea89 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,16 @@ In the above example the secret name is `REGISTRY_USERNAME` and `REGISTRY_PASSWO container-registry-username: ${{ secrets.REGISTRY_USERNAME }} ``` +To use an Azure Service Principal, create a secret called AZURE_CREDENTIALS that contains: +```json +{ +"tenantId": "", +"clientId": "", +"clientSecret": "", +"subscriptionId": "" +}    +``` + ## End to end workflow for building container images and deploying to an Azure Kubernetes Service cluster ```yaml