-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sample.env
57 lines (51 loc) · 2.03 KB
/
Sample.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#--------------------------------------------------------------------
# Tile Creation Configuration File
#
# This file contains the connection parameters and other
# configurations to be read by the shell scripts.
#
# For compatibility, where possible, there should be no space before
# or after the # equal sign between the variable name and value, and
# the values should only include alphanumeric characters.
#
# Any value with *** must be populated manually.
#--------------------------------------------------------------------
#--------------------------------------------------------------------
# BUCKET
#
# These variables determine the AWS S3 account or compatible
# platform (such as Cloudflare R2) into which the pmtiles file
# will be exported. If BUCKET_ENDPOINT is left empty, the AWS service
# endpoint URL will be created using the BUCKET_DEFAULT_REGION value.
#--------------------------------------------------------------------
BUCKET_ACCESS_KEY_ID=***
BUCKET_DEFAULT_REGION=***
BUCKET_ENDPOINT=***
BUCKET_SECRET_ACCESS_KEY=***
#--------------------------------------------------------------------
# INSTANCE
#
# These variables determine the AWS EC2 account where the tile
# creation processing instance will be created. The shell scripts
# presume that the user has a preexisting AWS key, network group,
# and subnet. The INSTANCE_KEY_FOLDER variable contains the folder
# location, with trailing slash, where the key is located.
#--------------------------------------------------------------------
INSTANCE_AVAILABILITY_ZONE=***
INSTANCE_KEY=***
INSTANCE_KEY_FOLDER=***
INSTANCE_NETWORK_GROUP=***
INSTANCE_SUBNET=***
#--------------------------------------------------------------------
# TILES
#
# These variables determine the data and software versions used to
# create the tiles. The most recently tested versions are populated
# below.
#--------------------------------------------------------------------
DAYLIGHT_VERSION="1.58"
JAVA_VERSION=21
NODE_MAJOR=20
PLANET_BOUNDS="-180,-90,180,90"
PLANETILER_VERSION="0.8.3"
PMTILES_VERSION="1.22.1"