diff --git a/components/app/config/app_settings.yml b/components/app/config/app_settings.yml index fb4544ee7..e3c21c96c 100644 --- a/components/app/config/app_settings.yml +++ b/components/app/config/app_settings.yml @@ -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 diff --git a/infrastructure/production/switch.tf b/infrastructure/production/switch.tf index 30e3a1627..8e40a5627 100644 --- a/infrastructure/production/switch.tf +++ b/infrastructure/production/switch.tf @@ -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" diff --git a/infrastructure/staging/switch.tf b/infrastructure/staging/switch.tf index 4c2e2bd79..27172296e 100644 --- a/infrastructure/staging/switch.tf +++ b/infrastructure/staging/switch.tf @@ -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"