```const userData = sshKey.apply(key => ` #clou...
# general
r
Copy code
const userData = sshKey.apply(key => `
#cloud-config
users:
  - name: ${adminUser}
    ssh-authorized-keys:
      - ${sshKey}
    sudo: ['ALL=(ALL) NOPASSWD:ALL']
    groups: sudo
    shell: /bin/bash
`);