You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
support raw value for ssh keys in addition to paths (#159)
* support raw value for ssh keys in addion to paths
* support raw value for ssh keys in addion to paths
* moved ssh key type check to linux vm resource
* moving ssh value to a new variable
* tf fmt
* Update README.md
change name to `ssh_key_values`
* Update main.tf
* Update main.tf
* Update variables.tf
* Update README.md
format
Co-authored-by: Yuping Wei <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,8 @@ More specifically this provisions:
148
148
When ssh keys are enabled you can either
149
149
- use the default "~/.ssh/id_rsa.pub"
150
150
- set one key by setting a path in ssh_key variable. e.g "joey_id_rsa.pub"
151
-
- set shh_key and add zero or more files paths in extra_ssh_keys variable e.g. ["ross_id_rsa.pub", "rachel_id_rsa.pub"] (since v3.8.0)
151
+
- set ssh_key and add zero or more files paths in extra_ssh_keys variable e.g. ["ross_id_rsa.pub", "rachel_id_rsa.pub"] (since v3.8.0)
152
+
- set ssh_key_values as a list of raw public ssh keys values or refer it to a data source with the public key value, e.g. `["ssh-rsa AAAAB3NzaC1yc..."]`
152
153
153
154
4 - You can install custom certificates / secrets on the virtual machine from Key Vault by using the variable `os_profile_secrets`.
0 commit comments