Skip to content

Commit ed476df

Browse files
committed
fix: update var names from latest bpg patch
1 parent 208dba6 commit ed476df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ resource "proxmox_virtual_environment_container" "proxmox_lxc" {
3333
}
3434
disk {
3535
datastore_id = var.datastore_id
36-
root_disk_size = var.root_disk_size
36+
rootfs_size = var.rootfs_size
3737
}
3838
network_interface {
3939
name = "veth0"

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ variable "datastore_id" {
2828
type = string
2929
default = "local-lvm"
3030
}
31-
variable "root_disk_size" {
31+
variable "rootfs_size" {
3232
type = string
3333
default = "4G"
3434
}

0 commit comments

Comments
 (0)