Skip to content

Commit

Permalink
Merge pull request #39 from codeforjapan/refactor/chanage-http-to-https
Browse files Browse the repository at this point in the history
refactor: change http to https
  • Loading branch information
ayuki-joto authored Jan 16, 2024
2 parents 13f4b93 + ac348cb commit 15a9811
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/decidim-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ export class DecidimStack extends cdk.Stack {
NEW_RELIC_APP_NAME: `decidim-app${ props.stage }`,
MAPS_PROVIDER: 'osm',
MAPS_STATIC_PROVIDER: 'cfj_osm',
MAPS_STATIC_URL: 'http://www.openstreetmap.org/',
MAPS_DYNAMIC_URL: 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
MAPS_STATIC_URL: 'https://www.openstreetmap.org/',
MAPS_DYNAMIC_URL: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
MAPS_ATTRIBUTION: '<a href="https://www.openstreetmap.org/copyright" target="_blank">&copy; OpenStreetMap</a> contributors',
MAPS_DYNAMIC_API_KEY: 'true',
MAPS_GEOCODING_HOST: 'nominatim.openstreetmap.org'
Expand Down
4 changes: 2 additions & 2 deletions test/__snapshots__/decidim-cfj-cdk.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1479,11 +1479,11 @@ exports[`DecidimStack Created 1`] = `
},
{
"Name": "MAPS_STATIC_URL",
"Value": "http://www.openstreetmap.org/",
"Value": "https://www.openstreetmap.org/",
},
{
"Name": "MAPS_DYNAMIC_URL",
"Value": "http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
"Value": "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
},
{
"Name": "MAPS_ATTRIBUTION",
Expand Down

0 comments on commit 15a9811

Please sign in to comment.