aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/common/manifests/export_ssh_keys.pp
blob: 55b8f33bead8d3cda961a0b414e55dc81f07e42b (plain)
1
2
3
4
5
6
7
class common::export_ssh_keys {
    @@sshkey { $::fqdn:
        type         => 'rsa',
        key          => $::sshrsakey,
        host_aliases => [$::ipaddress,$::hostname],
    }
}