summaryrefslogtreecommitdiff
path: root/doc/userdata.txt
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2011-07-26 14:17:24 -0400
committerScott Moser <smoser@ubuntu.com>2011-07-26 14:17:24 -0400
commit10edc78d777cadb2cd871776622e6a775ef8f8a2 (patch)
treec348e0f3710a8378121aaa7684fa020b959d8986 /doc/userdata.txt
parenta3dcbac2528f7c8ecaedeca64c4792f7e3d4ee59 (diff)
parentd5874c0bfcefc74ad9045efe4ed8450039b11b9a (diff)
downloadvyos-cloud-init-10edc78d777cadb2cd871776622e6a775ef8f8a2.tar.gz
vyos-cloud-init-10edc78d777cadb2cd871776622e6a775ef8f8a2.zip
add support for 'include-once' and public and private keys to mcollective
the new 'include-once' type will include a URL only once, and cache its results. This way you can use expiring URLs or one-time use urls to pass sensitive data to the instance. The instance will cache the result in a local root only file for subsequent boots. Additionally, add support for specifying public and private keys for mcollective via cloud-config. Both these features come via Marc Cluet.
Diffstat (limited to 'doc/userdata.txt')
-rw-r--r--doc/userdata.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/userdata.txt b/doc/userdata.txt
index 00c16b25..cc691ae6 100644
--- a/doc/userdata.txt
+++ b/doc/userdata.txt
@@ -36,6 +36,16 @@ finds. However, certain types of user-data are handled specially.
will be passed through this same set of rules. Ie, the content
read from the URL can be gzipped, mime-multi-part, or plain text
+* Include File Once
+ begins with #include-once or Content-Type: text/x-include-once-url
+ This content is a "include" file. The file contains a list of
+ urls, one per line. Each of the URLs will be read, and their content
+ will be passed through this same set of rules. Ie, the content
+ read from the URL can be gzipped, mime-multi-part, or plain text
+ This file will just be downloaded only once per instance, and its
+ contents cached for subsequent boots. This allows you to pass in
+ one-time-use or expiring URLs.
+
* Cloud Config Data
begins with #cloud-config or Content-Type: text/cloud-config