Skip to content

Commit

Permalink
Fix: deploying to Azure is failed because no fields about reCAPTCHA k…
Browse files Browse the repository at this point in the history
…eys.
  • Loading branch information
jsakamoto authored and Krzysiek Madejski committed Dec 6, 2018
1 parent e41687b commit 18d218e
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 18d218e

Please sign in to comment.