diff --git a/lib/ansible/modules/cloud/smartos/vmadm.py b/lib/ansible/modules/cloud/smartos/vmadm.py index 08fd81e86dc..832260a4484 100644 --- a/lib/ansible/modules/cloud/smartos/vmadm.py +++ b/lib/ansible/modules/cloud/smartos/vmadm.py @@ -33,10 +33,10 @@ options: - Whether or not a VM is booted when the system is rebooted. brand: required: true - choices: [ joyent, joyent-minimal, kvm, lx ] + choices: [ joyent, joyent-minimal, lx, kvm, bhyve ] default: joyent description: - - Type of virtual machine. + - Type of virtual machine. The C(bhyve) option was added in Ansible 2.10. boot: required: false description: @@ -641,7 +641,7 @@ def main(): brand=dict( default='joyent', type='str', - choices=['joyent', 'joyent-minimal', 'kvm', 'lx'] + choices=['joyent', 'joyent-minimal', 'lx', 'kvm', 'bhyve'] ), cpu_type=dict( default='qemu64',