Puppet

Puppetで複数の鍵を登録するためのマニフェスト [#qc9bb967]

 ssh_authorized_key { 'user1@example.com':
  user => 'k',
  type => 'rsa',
  key => 'AAAAB3Nz.... ',
  }
 
 ssh_authorized_key { 'user2@example.org':
  user => 'k',
  type => 'rsa',
  key => 'BBBBBB3Nz..... ',
  }