diff options
author | keyz182 <keyz182@gmail.com> | 2011-05-28 00:50:41 +0100 |
---|---|---|
committer | keyz182 <keyz182@gmail.com> | 2011-05-28 00:50:41 +0100 |
commit | 2d1e87fb520292c6c30484ea7acad84adb0487d3 (patch) | |
tree | c68b50b5632fd5aae50261b7c68bd7d5ac72dcff /doc | |
parent | deb6d2356e3989d09029264c74b7d65c8f4414a3 (diff) | |
download | vyos-cloud-init-2d1e87fb520292c6c30484ea7acad84adb0487d3.tar.gz vyos-cloud-init-2d1e87fb520292c6c30484ea7acad84adb0487d3.zip |
Added support for loading metadata urls from config files.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/cloud-config-datasources.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/examples/cloud-config-datasources.txt b/doc/examples/cloud-config-datasources.txt index 3333792e..a625e76d 100644 --- a/doc/examples/cloud-config-datasources.txt +++ b/doc/examples/cloud-config-datasources.txt @@ -8,3 +8,10 @@ datasource: # 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_url: + - http://169.254.169.254:80 + - http://instance-data:8773 + + |