Last active
April 8, 2017 00:43
-
-
Save yamamoto-febc/9fe79bbb3c2b308d2b3174b339b68c79 to your computer and use it in GitHub Desktop.
usacloudでサブリソースのIDを指定(コマンド置き換え利用)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 公開鍵のIDをコマンド置換 => "$()"を利用することで公開鍵の名で指定する | |
# note: コマンド置換部分では、複数ヒット時対策としてダブルクォートで囲んでいる(複数ヒット時は書式エラーにできる) | |
# note: -qオプション: 該当リソースのIDのみ出力するオプション | |
usacloud server build \ | |
--name Example01 \ | |
--os-type centos \ | |
--password PUT_YOUR_PASSWORD_HERE \ | |
--ssh-key-mode id \ | |
--ssh-key-ids "$(usacloud ssh-key read -q your_ssh_key_name)" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment