Add two or more SSH keys to a user, in puppet

It should be possible to just add a second ssh_authorized_key resource:

ssh_authorized_key { '[email protected]':
  user => 'k',
  type => 'rsa',
  key => 'AAAAB3Nz.... ',
  }

ssh_authorized_key { '[email protected]':
  user => 'k',
  type => 'rsa',
  key => 'BBBBBB3Nz..... ',
  }

What is important is that the resource name is different.