|
1 | 1 | variable "volume" { |
2 | 2 | description = "Volume configuration" |
3 | 3 | type = object({ |
4 | | - name = string |
5 | | - capacity = string |
6 | | - volume_handle = string |
7 | | - access_modes = optional(list(string), ["ReadWriteOnce"]) |
| 4 | + name = string |
| 5 | + capacity = string |
| 6 | + volume_handle = string |
| 7 | + access_modes = optional(list(string), ["ReadWriteOnce"]) |
8 | 8 | storage_class_name = optional(string, "proxmox-csi") |
9 | | - fs_type = optional(string, "ext4") |
10 | | - driver = optional(string, "csi.proxmox.sinextra.dev") |
11 | | - volume_mode = optional(string, "Filesystem") |
12 | | - mount_options = optional(list(string), ["noatime"]) |
13 | | - cache = optional(string, "writethrough") |
14 | | - ssd = optional(bool, true) |
15 | | - storage = optional(string, "local-zfs") |
| 9 | + fs_type = optional(string, "ext4") |
| 10 | + driver = optional(string, "csi.proxmox.sinextra.dev") |
| 11 | + volume_mode = optional(string, "Filesystem") |
| 12 | + mount_options = optional(list(string), ["noatime"]) |
| 13 | + cache = optional(string, "writethrough") |
| 14 | + ssd = optional(bool, true) |
| 15 | + storage = optional(string, "local-zfs") |
16 | 16 | }) |
17 | 17 | } |
0 commit comments