-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdatadog.txt
39 lines (30 loc) · 1.09 KB
/
datadog.txt
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
# env vars
DD_API_KEY=01000000000000000000000000000000
DD_APP_KEY=0100000000000000000000000000000000000000
# some other config format
DATADOG_API_KEY = "01000000000000000000000000000000"
DATADOG_APP_KEY= "0100000000000000000000000000000000000000"
# YAML
datadog_api_key: 01000000000000000000000000000000
datadog_app_key: 0100000000000000000000000000000000000000
# Docker
env:
- name: DD_AP_KEY
value: "01000000000000000000000000000000"
- name: DATADOG_APP_KEY
value: "0100000000000000000000000000000000000000"
# Winston config
new DataDogWinston({
apiKey:'01000000000000000000000000000000'
appKey:'0100000000000000000000000000000000000000'
});
# shell script use of terraformer
terraformer import datadog --api-key=01000000000000000000000000000000 --app-key==0100000000000000000000000000000000000000
# content of .tf file
provider "datadog" {
api_key = "01000000000000000000000000000000"
app_key = "0100000000000000000000000000000000000000"
}
# Capistrano, Capfile
set :datadog_api_key, "01000000000000000000000000000000"
set :datadog_app_key, "0100000000000000000000000000000000000000"