puppet-nova/types/sshkey.pp
Takashi Kajinami 17bd61e042 Refactor validation of ssh_key parameters by Struct data type
Change-Id: I55d79365ad9686ea9d59597894f6f337b8fedbf6
2024-10-01 10:12:19 +09:00

7 lines
128 B
Puppet

type Nova::SshKey = Struct[
{
key => String[1],
type => Enum['ssh-rsa', 'ssh-dsa', 'ssh-ecdsa', 'ssh-ed25519']
}
]