Skip to content

Commit

Permalink
https://github.com/rauchg/slackin/pull/333
Browse files Browse the repository at this point in the history
* fix/deploy-to-azure/missing-recaptcha-keys:
  Fix: deploying to Azure is failed because no fields about reCAPTCHA keys.
  • Loading branch information
Krzysiek Madejski committed Dec 6, 2018
2 parents e41687b + 18d218e commit 85b9f1d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@
"description": "Slack API token (find it on https://api.slack.com/web)"
}
},
"googleCaptchaSiteKey": {
"type": "string",
"metadata": {
"description": "Google reCAPTCHA API Site key (find it on https://www.google.com/recaptcha/admin)"
}
},
"googleCaptchaSecret": {
"type": "string",
"metadata": {
"description": "Google reCAPTCHA API Secret key (find it on https://www.google.com/recaptcha/admin)"
}
},
"slackinRelease" : {
"type": "string",
"allowedValues": [
Expand Down Expand Up @@ -99,6 +111,8 @@
"SLACK_SUBDOMAIN": "[parameters('slackTeamId')]",
"SLACK_API_TOKEN": "[parameters('slackApiToken')]",
"SLACKIN_RELEASE": "[parameters('slackinRelease')]",
"GOOGLE_CAPTCHA_SITEKEY": "[parameters('googleCaptchaSiteKey')]",
"GOOGLE_CAPTCHA_SECRET": "[parameters('googleCaptchaSecret')]",
"WEBSITE_NPM_DEFAULT_VERSION": "3.3.12",
"WEBSITE_NODE_DEFAULT_VERSION": "5.1.1",
"command": "bash scripts/azuredeploy.sh"
Expand Down

0 comments on commit 85b9f1d

Please sign in to comment.