blob: e04f89761cdea2eda7d0dfd08de7d4552cf21241 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Documentation on data sources configuration options
datasource:
# Ec2
Ec2:
# timeout: the timeout value for attempt at metadata service
timeout : 2
# the number of tries that should be attempted at the metadata service
# after each try, a sleep of int(try_number/5)+1 is done
# default sleep is 30
retries : 30
#metadata_url: a list of URLs to check for metadata services
metadata_urls:
- http://169.254.169.254:80
- http://instance-data:8773
|