diff --git a/src/legacy/server/config/schema.js b/src/legacy/server/config/schema.js index 84a5e7cd548..544b9bc9ec6 100644 --- a/src/legacy/server/config/schema.js +++ b/src/legacy/server/config/schema.js @@ -202,14 +202,12 @@ export default () => .default([]), }).default(), manifestServiceUrl: Joi.string().default('').allow(''), - opensearchManifestServiceUrl: Joi.string().default( - 'https://maps.search-services.aws.a2z.com/v4/ap-southeast-1/manifest' - ), - emsFileApiUrl: Joi.string().default('https://vectors.maps.search-services.aws.a2z.com'), - emsTileApiUrl: Joi.string().default('https://tiles.maps.search-services.aws.a2z.com'), - emsLandingPageUrl: Joi.string().default('https://maps.search-services.aws.a2z.com/v4'), + opensearchManifestServiceUrl: Joi.string().default('https://maps.opensearch.org/manifest'), + emsFileApiUrl: Joi.string().default('https://vectors.maps.opensearch.org'), + emsTileApiUrl: Joi.string().default('https://tiles.maps.opensearch.org'), + emsLandingPageUrl: Joi.string().default('https://maps.opensearch.org'), emsFontLibraryUrl: Joi.string().default( - 'https://tiles.maps.search-services.aws.a2z.com/fonts/{fontstack}/{range}.pbf' + 'https://tiles.maps.opensearch.org/fonts/{fontstack}/{range}.pbf' ), emsTileLayerId: Joi.object({ bright: Joi.string().default('road_map'), diff --git a/src/plugins/maps_legacy/config.ts b/src/plugins/maps_legacy/config.ts index 956a803eeb2..305074c7419 100644 --- a/src/plugins/maps_legacy/config.ts +++ b/src/plugins/maps_legacy/config.ts @@ -41,15 +41,15 @@ export const configSchema = schema.object({ regionmap: regionmapSchema, manifestServiceUrl: schema.string({ defaultValue: '' }), opensearchManifestServiceUrl: schema.string({ - defaultValue: 'https://maps.search-services.aws.a2z.com/v4/us-east-1/manifest', + defaultValue: 'https://maps.opensearch.org/manifest', }), emsFileApiUrl: schema.string({ - defaultValue: 'https://vectors.maps.search-services.aws.a2z.com', + defaultValue: 'https://vectors.maps.opensearch.org', }), - emsTileApiUrl: schema.string({ defaultValue: 'https://tiles.maps.search-services.aws.a2z.com' }), - emsLandingPageUrl: schema.string({ defaultValue: 'https://maps.search-services.aws.a2z.com/v4' }), + emsTileApiUrl: schema.string({ defaultValue: 'https://tiles.maps.opensearch.org' }), + emsLandingPageUrl: schema.string({ defaultValue: 'https://maps.opensearch.org' }), emsFontLibraryUrl: schema.string({ - defaultValue: 'https://tiles.maps.search-services.aws.a2z.com/fonts/{fontstack}/{range}.pbf', + defaultValue: 'https://tiles.maps.opensearch.org/fonts/{fontstack}/{range}.pbf', }), emsTileLayerId: schema.object({ bright: schema.string({ defaultValue: 'road_map' }),