Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
dwilkie committed Sep 10, 2024
1 parent 166974d commit 9c9cefd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/app/config/app_settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ production: &production
sentry_dsn: "<%= AppSettings.credentials.fetch('sentry_dsn') %>"
ahn_core_password: "<%= ENV.fetch('AHN_CORE_PASSWORD') %>"
ahn_http_password: "<%= AppSettings.credentials.fetch('ahn_http_password') %>"
call_platform_host: "https://api.internal.somleng.org"
call_platform_host: "https://api.somleng.org"
call_platform_password: "<%= AppSettings.credentials.fetch('call_platform_password') %>"

staging:
<<: *production
call_platform_host: "https://api-staging.internal.somleng.org"
call_platform_host: "https://api-staging.somleng.org"

development: &development
<<: *default
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/production/switch.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "switch" {
source = "../modules/switch"

json_cdr_url = "https://api.internal.somleng.org/services/call_data_records"
json_cdr_url = "https://api.somleng.org/services/call_data_records"
target_group_name = "switch-internal"
cache_name = "somleng-switch-cache"
cache_security_group_name = "switch-efs-cache"
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/staging/switch.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module "switch" {
source = "../modules/switch"

json_cdr_url = "https://api-staging.internal.somleng.org/services/call_data_records"
json_cdr_url = "https://api-staging.somleng.org/services/call_data_records"
target_group_name = "switch-staging-internal"
cache_name = "switch-staging-cache"
cache_security_group_name = "switch-staging-efs-cache"
Expand Down

0 comments on commit 9c9cefd

Please sign in to comment.