diff options
Diffstat (limited to 'doc')
-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 ] |