Skip to content

Commit fec9496

Browse files
authored
Merge pull request #77 from khanh-ph/release/3.3.1
Release version 3.3.1
2 parents 62c6545 + dd766f0 commit fec9496

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ The project provides several Terraform variables that allow you to customize the
6868
| <a name="input_pm_api_token_secret"></a> [pm\_api\_token\_secret](#input\_pm\_api\_token\_secret) | The UUID/secret of the token defined in the variable `pm_api_token_id`. | `string` | n/a | yes |
6969
| <a name="input_pm_tls_insecure"></a> [pm\_tls\_insecure](#input\_pm\_tls\_insecure) | Disable TLS verification while connecting to the Proxmox VE API server. | `bool` | n/a | yes |
7070
| <a name="input_pm_host"></a> [pm\_host](#input\_pm\_host) | The name of Proxmox node where the VM is placed. | `string` | n/a | yes |
71+
| <a name="input_pm_parallel"></a> [pm\_parallel](#input\_pm\_parallel) | The number of simultaneous Proxmox processes. E.g: creating resources. | `number` | `2` | no |
72+
| <a name="input_pm_timeout"></a> [pm\_timeout](#input\_pm\_timeout) | Timeout value (seconds) for proxmox API calls. | `number` | `600` | no |
7173
| <a name="input_env_name"></a> [env\_name](#input\_env\_name) | n/a | `string` | `"test"` | no |
7274
| <a name="input_internal_net_name"></a> [internal\_net\_name](#input\_internal\_net\_name) | Name of the internal network bridge. | `string` | `"vmbr1"` | no |
7375
| <a name="input_internal_net_subnet_cidr"></a> [internal\_net\_subnet\_cidr](#input\_internal\_net\_subnet\_cidr) | CIDR of the internal network. For example: 10.0.1.0/24 | `string` | `""` | no |

providers.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@ provider "proxmox" {
1818
pm_api_token_id = var.pm_api_token_id
1919
pm_api_token_secret = var.pm_api_token_secret
2020
pm_tls_insecure = var.pm_tls_insecure
21+
pm_parallel = var.pm_parallel
22+
pm_timeout = var.pm_timeout
2123
}

variables.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ variable "pm_host" {
2323
description = "The name of Proxmox node where the VM is placed."
2424
}
2525

26+
variable "pm_parallel" {
27+
type = number
28+
description = "The number of simultaneous Proxmox processes. E.g: creating resources."
29+
default = 2
30+
}
31+
32+
variable "pm_timeout" {
33+
type = number
34+
description = "Timeout value (seconds) for proxmox API calls."
35+
default = 600
36+
}
37+
2638
#
2739
# Environment
2840
#

0 commit comments

Comments
 (0)