diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-08-15 16:39:21 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-08-15 16:39:21 -0500 |
commit | 91cf9a3fbab9fcb005c0bfea50811589243781d5 (patch) | |
tree | 7e6398d7cdaeaeeee4665d7447322ae6abd94ad4 /doc | |
parent | 4aceeea084d00c2f5453b58518317953a0f552c6 (diff) | |
download | vyos-cloud-init-91cf9a3fbab9fcb005c0bfea50811589243781d5.tar.gz vyos-cloud-init-91cf9a3fbab9fcb005c0bfea50811589243781d5.zip |
add awareness of ecdsa keys.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/cloud-config.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/examples/cloud-config.txt b/doc/examples/cloud-config.txt index 9f3add0f..981fadae 100644 --- a/doc/examples/cloud-config.txt +++ b/doc/examples/cloud-config.txt @@ -135,6 +135,7 @@ ssh_authorized_keys: # Send pre-generated ssh private keys to the server # If these are present, they will be written to /etc/ssh and # new random keys will not be generated +# in addition to 'rsa' and 'dsa' as shown below, 'ecdsa' is also supported ssh_keys: rsa_private: | -----BEGIN RSA PRIVATE KEY----- @@ -391,7 +392,7 @@ output: # phone_home: url: http://my.example.com/$INSTANCE_ID/ - post: [ pub_key_dsa, pub_key_rsa, instance_id ] + post: [ pub_key_dsa, pub_key_rsa, pub_key_ecdsa, instance_id ] # timezone: set the timezone for this instance # the value of 'timezone' must exist in /usr/share/zoneinfo |