1 Commits

Author SHA1 Message Date
cuddle-please
8e44241c4b chore(release): 0.5.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2024-12-01 21:43:05 +00:00
3 changed files with 1 additions and 17 deletions

View File

@@ -6,16 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.5.2] - 2025-01-11
### Added
- add ability to set disk size
## [0.5.1] - 2025-01-11
### Added
- add on boot true for all nodes
## [0.5.0] - 2024-12-01 ## [0.5.0] - 2024-12-01
### Added ### Added

View File

@@ -65,8 +65,6 @@ resource "proxmox_vm_qemu" "node" {
bootdisk = "scsi0" bootdisk = "scsi0"
scsihw = "virtio-scsi-single" scsihw = "virtio-scsi-single"
onboot = true
serial { serial {
id = 0 id = 0
} }
@@ -84,7 +82,7 @@ resource "proxmox_vm_qemu" "node" {
disk { disk {
storage = "local" storage = "local"
# The size of the disk should be at least as big as the disk in the template. If it's smaller, the disk will be recreated # The size of the disk should be at least as big as the disk in the template. If it's smaller, the disk will be recreated
size = var.disk_size size = "10G"
} }
} }
} }

View File

@@ -57,7 +57,3 @@ variable "cpu" {
variable "memory" { variable "memory" {
default = 512 default = 512
} }
variable "disk_size" {
default = "10G"
}