4.3. cloud-init でのデフォルトユーザー名の変更
デフォルトのユーザー名は、cloud-user
以外のものに変更できます。
手順
データソースの要件に応じて、
user-data
ファイルを編集するか、以下のディレクティブをcloud.cfg.d
ディレクトリーに追加します。注記cloud-init
が、ユーザーディレクティブを含むファイルを認識できるように、すべてのユーザーディレクティブはファイルの最上部に#cloud-config
が含まれます。cloud.cfg.d
ディレクトリーにディレクティブを含める場合は、ファイル名を*.cfg
とし、ファイルの最上部に常に#cloud-config
を含めます。user: <username> の
行を追加します。<username> は新しいデフォルトのユーザー名に置き換えます。#cloud-config user: username password: mypassword chpasswd: {expire: False} ssh_pwauth: True ssh_authorized_keys: - ssh-rsa AAA...SDvz user1@yourdomain.com - ssh-rsa AAB...QTuo user2@yourdomain.com