Skip to content

Commit

Permalink
added test for timeouts in resource_nutanix_virtual_machine
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatavivek-ntnx authored and siddharth-nutanix committed Feb 14, 2022
1 parent 507987e commit 5a888eb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion nutanix/resource_nutanix_virtual_machine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -575,13 +575,18 @@ func testAccNutanixVMConfig(r int) string {
resource "nutanix_virtual_machine" "vm1" {
name = "test-dou-%d"
cluster_uuid = "${local.cluster1}"
boot_device_order_list = ["DISK", "CDROM"]
boot_type = "LEGACY"
num_vcpus_per_socket = 1
num_sockets = 1
memory_size_mib = 186
timeouts {
create = "10m"
update = "10m"
delete = "10m"
}
categories {
name = "Environment"
Expand Down

0 comments on commit 5a888eb

Please sign in to comment.