From 87e0fe92fbcf5f6aeefa6391cd486851581abdd0 Mon Sep 17 00:00:00 2001 From: Lucas Hahn Date: Fri, 8 Jan 2021 14:29:18 +0100 Subject: [PATCH] Upadte doc and changelog --- CHANGELOG.md | 1 + docs/resources/vm.md | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4ff501d..207fd821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ ENHANCEMENTS: * resource/virtual_environment_vm: Bulk clones can now use retries as argument to try multiple times to create a clone. * resource/virtual_environment_vm: `on_boot` parameter can be used to start a VM after the Node has been rebooted. * resource/virtual_environment_vm: `reboot` parameter can be used to reboot a VM after creation +* resource/virtual_environment_vm: Has now multiple new parameters to set timeouts for the vm creation/cloning `timeout_clone`, `timeout_move_disk`, `timeout_reboot`, `timeout_shutdown_vm`, `timeout_start_vm`, `timeout_stop_vm` BUG FIXES: diff --git a/docs/resources/vm.md b/docs/resources/vm.md index 7bea83cb..60dee6a2 100644 --- a/docs/resources/vm.md +++ b/docs/resources/vm.md @@ -271,6 +271,12 @@ output "ubuntu_vm_public_key" { * `started` - (Optional) Whether to start the virtual machine (defaults to `true`). * `tablet_device` - (Optional) Whether to enable the USB tablet device (defaults to `true`). * `template` - (Optional) Whether to create a template (defaults to `false`). +* `timeout_clone` - (Optional) Timeout for cloning a VM in seconds (defaults to 1800). +* `timeout_move_disk` - (Optional) Timeout for moving the disk of a VM in seconds (defaults to 1800). +* `timeout_reboot` - (Optional) Timeout for rebooting a VM in seconds (defaults to 1800). +* `timeout_shutdown_vm` - (Optional) Timeout for shutting down a VM in seconds (defaults to 1800). +* `timeout_start_vm` - (Optional) Timeout for starting a VM in seconds (defaults to 1800). +* `timeout_stop_vm` - (Optional) Timeout for stopping a VM in seconds (defaults to 300). * `vga` - (Optional) The VGA configuration. * `enabled` - (Optional) Whether to enable the VGA device (defaults to `true`). * `memory` - (Optional) The VGA memory in megabytes (defaults to `16`).