Skip to content
This repository has been archived by the owner on Aug 24, 2023. It is now read-only.

Commit

Permalink
Fix inputs section in README
Browse files Browse the repository at this point in the history
  • Loading branch information
StiviiK committed May 12, 2020
1 parent 807a3cc commit f2c6571
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,25 @@ A GitHub Action to deploy ARM templates.
* [Checkout](https://github.com/actions/checkout) To checks-out your repository so the workflow can access any specified ARM template.

## Inputs
* `creds` **Required**
[Create Service Principal for Authentication](#Create-Service-Principal-for-Authentication)

* `creds` **Required** Paste output of `az ad sp create-for-rbac --sdk-auth` as value of secret variable: AZURE_CREDENTIALS
* `resourceGroupName` **Required**
Provide the name of a resource group.

* `resourceGroupName` **Required** Provide the name of a resource group.
* `templateLocation` **Required**
Specify the path to the Azure Resource Manager template.
(See [assets/json/template.json](assets/json/template.json))

* `templateLocation` **Required** Specify the path to the Azure Resource Manager template.

* `deploymentMode` Incremental (only add resources to resource group) or Complete (remove extra resources from resource group). Default: `Incremental`.
* `deploymentMode`
Incremental (only add resources to resource group) or Complete (remove extra resources from resource group). Default: `Incremental`.

* `deploymentName` **Required** Specifies the name of the resource group deployment to create.
* `deploymentName`
Specifies the name of the resource group deployment to create.

* `parametersLocation` Specify the path to the Azure Resource Manager parameters file.
* `parametersLocation`
Specify the path to the Azure Resource Manager parameters file.
(See [assets/json/serviceprincipal.json](assets/json/parameters.json))

## Outputs

Expand Down

0 comments on commit f2c6571

Please sign in to comment.