File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -71,15 +71,23 @@ Before starting, you need to have:
71
71
2014` doesn't seem to create a valid keypair for ssh. FWIW,
72
72
` OpenSSL 1.0.1c 10 May 2012 ` on Ubuntu 12.04 LTS is known to work.
73
73
74
- Here is a description on how to generate this using ` openssl ` :
74
+ You should follow [ this guide] ( http://azure.microsoft.com/en-us/documentation/articles/linux-use-ssh-key/ ) to learn
75
+ how to create or use existing SSH keys. If you have already did it, you can skip the following.
76
+
77
+ Here is a description on how to generate SSH keys using ` openssl ` :
75
78
76
79
``` sh
77
80
# You may want to use another dir than /tmp
78
81
cd /tmp
79
82
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout azure-private.key -out azure-certificate.pem
80
83
chmod 600 azure-private.key azure-certificate.pem
81
84
openssl x509 -outform der -in azure-certificate.pem -out azure-certificate.cer
85
+ ```
82
86
87
+ Generate a keystore which will be used by the plugin to authenticate with a certificate
88
+ all Azure API calls.
89
+
90
+ ``` sh
83
91
# Generate a keystore (azurekeystore.pkcs12)
84
92
# Transform private key to PEM format
85
93
openssl pkcs8 -topk8 -nocrypt -in azure-private.key -inform PEM -out azure-pk.pem -outform PEM
You can’t perform that action at this time.
0 commit comments