Skip to content

Commit

Permalink
Trivial fixes for IaC D365 (#111)
Browse files Browse the repository at this point in the history
* fix: backwards boolean

* chore: align table chars
  • Loading branch information
trev-dev authored May 22, 2024
1 parent bf2346b commit e52aaeb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions tools/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ valid JSON file, so these types should be in JSON.

| Key | Type |
|-------------------------|------------------------|
| D365_API_KEY_SCHEME | `Object` |
| D365_API_AUTH_SETTINGS | `Object` |
| D365_DEFAULT_SENDER_ID | `String` |
| D365_DEFAULT_CONTACT_ID | `String` |
| D365_RECIPIENTS | `Array<String>` |
| D365_BC_REGISTRY_API | `Object` |
| D365_BCCAS_API_URL | `String` |
| D365_API_KEY_SCHEME | `Object` |
| D365_API_AUTH_SETTINGS | `Object` |
| D365_DEFAULT_SENDER_ID | `String` |
| D365_DEFAULT_CONTACT_ID | `String` |
| D365_RECIPIENTS | `Array<String>` |
| D365_BC_REGISTRY_API | `Object` |
| D365_BCCAS_API_URL | `String` |

Each of these keys are environment specific, so make sure you update each
environment where applicable.
2 changes: 1 addition & 1 deletion tools/config/update-configmap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fi
readonly D365_LOG_LEVEL

D365_EMAIL_SAFE_LIST_ENABLE=true
if [ "$ENV_VAL" != "prod" ]; then
if [ "$ENV_VAL" = "prod" ]; then
D365_EMAIL_SAFE_LIST_ENABLE=false
fi
readonly D365_EMAIL_SAFE_LIST_ENABLE
Expand Down

0 comments on commit e52aaeb

Please sign in to comment.