Skip to content

Commit

Permalink
Merge pull request #283 from bcgov/hotfix/forumEntrypoint
Browse files Browse the repository at this point in the history
Hotfix/forum entrypoint
  • Loading branch information
BrandonSharratt authored Feb 14, 2020
2 parents 214b241 + 11e13e3 commit 17e0b71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion microservices/forumApi/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ printf "\"jwtSecret\": \"${JWT_SECRET}\",\n" >> ./config/default.json
printf "\"defaultAccessIsGroup\": ${DEFAULT_ACCESS_IS_GROUP},\n" >> ./config/default.json
printf "\"requiredRoleToCreateTopic\": \"${REQUIRED_CREATE_ROLE}\",\n" >> ./config/default.json
printf "\"ignoreGroupsFromConsideration\": [${IGNORE_GROUPS}],\n" >> ./config/default.json
printf "\"adminGroup\": [${ADMIN_GROUP}],\n" >> ./config/default.json
printf "\"adminGroup\": \"${ADMIN_GROUP}\",\n" >> ./config/default.json

printf "\"user\": {\n" >> ./config/default.json
printf "\"idField\": \"${USER_ID_FIELD}\",\n" >> ./config/default.json
Expand Down
2 changes: 1 addition & 1 deletion terraform/ocwa_forum_api.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resource "docker_container" "ocwa_forum_api" {
"DEFAULT_ACCESS_IS_GROUP=true",
"REQUIRED_CREATE_ROLE=/exporter",
"IGNORE_GROUPS=\"/researchers\"",
"ADMIN_GROUP=\"admin\"",
"ADMIN_GROUP=admin",
"EMAIL_SUBJECT=forumApi",
"EMAIL_ENABLED=false",
"EMAIL_USER=forum@ocwa.com",
Expand Down

0 comments on commit 17e0b71

Please sign in to comment.