Skip to content

Commit

Permalink
Fix timeout bug (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Naman1997 authored May 26, 2024
1 parent f7e894f commit 9e2f448
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.43.2"
version = "0.57.1"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions modules/domain/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.43.2"
version = "0.57.1"
}
}
}
Expand All @@ -29,7 +29,7 @@ resource "proxmox_virtual_environment_vm" "node" {

agent {
enabled = true
timeout = "10s"
timeout = "60s"
}

clone {
Expand All @@ -39,7 +39,7 @@ resource "proxmox_virtual_environment_vm" "node" {
}

network_device {
model = "e1000"
model = "virtio"
bridge = var.default_bridge
}

Expand Down

0 comments on commit 9e2f448

Please sign in to comment.