diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-01-25 00:41:12 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-01-25 00:41:12 -0500 |
commit | 0c8f22bf6b3d9fef58d3db72236618f82d05638e (patch) | |
tree | 20da5fde74d15a5e4815a9368d4906520bab23e2 /doc/examples/cloud-config.txt | |
parent | 608d00c061eec2efdbd903692d38baeab6cfd320 (diff) | |
parent | fd1b2ab551ca98735282aff554f689dd5a9df3f0 (diff) | |
download | vyos-cloud-init-0c8f22bf6b3d9fef58d3db72236618f82d05638e.tar.gz vyos-cloud-init-0c8f22bf6b3d9fef58d3db72236618f82d05638e.zip |
add 'phone_home' to cloud-config
Diffstat (limited to 'doc/examples/cloud-config.txt')
-rw-r--r-- | doc/examples/cloud-config.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/examples/cloud-config.txt b/doc/examples/cloud-config.txt index a55670f6..1ba51243 100644 --- a/doc/examples/cloud-config.txt +++ b/doc/examples/cloud-config.txt @@ -310,3 +310,17 @@ output: final: output: "| tee /tmp/final.stdout | tee /tmp/bar.stdout" error: "&1" + + +# phone_home: if this dictionary is present, then the phone_home +# cloud-config module will post specified data back to the given +# url +# default: none +# phone_home: +# url: http://my.foo.bar/$INSTANCE/ +# post: all +# tries: 10 +# +phone_home: + url: http://my.example.com/$INSTANCE_ID/ + post: [ pub_key_dsa, pub_key_rsa, instance_id ] |