-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (17 loc) · 1.17 KB
/
Copy path.env.example
File metadata and controls
21 lines (17 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# ─────────────────────────────────────────────────────────────────────
# PyroSense Simulator — environment variables
# Copy this file to `.env` and fill in the real values.
# `.env` is git-ignored: real values are NEVER committed.
# ─────────────────────────────────────────────────────────────────────
# AWS IoT Core endpoint (ATS). Obtain it with:
# aws iot describe-endpoint --endpoint-type iot:Data-ATS
PYROSENSE_IOT_ENDPOINT=xxxxxxxxxxxxxx-ats.iot.us-east-1.amazonaws.com
# Paths to the device's X.509 certificates (the certs/ directory is git-ignored)
PYROSENSE_CERT_PATH=certs/device.pem.crt
PYROSENSE_PRIVATE_KEY_PATH=certs/private.pem.key
PYROSENSE_ROOT_CA_PATH=certs/AmazonRootCA1.pem
# MQTT topic base prefix. The final topic is:
# {PYROSENSE_TOPIC_BASE}/{PYROSENSE_ENV}/telemetry/{device_id}
PYROSENSE_TOPIC_BASE=pyrosense
# Target deployment environment: dev | staging | prod
PYROSENSE_ENV=dev