0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-25 21:05:40 +00:00

Rename mount key to mountoptions

Signed-off-by: maidl0ver <maidlover@disroot.org>
Signed-off-by: maidlover <117573165+maidl0ver@users.noreply.github.com>
This commit is contained in:
maidlover 2025-07-28 18:14:54 +00:00
parent 84e2a023cc
commit 2626f1b84b

View File

@ -546,7 +546,7 @@ func (r *CustomRootFS) EncodeValues(key string, v *url.Values) error {
if r.MountOptions != nil { if r.MountOptions != nil {
if len(*r.MountOptions) > 0 { if len(*r.MountOptions) > 0 {
values = append(values, fmt.Sprintf("mount=%s", strings.Join(*r.MountOptions, ";"))) values = append(values, fmt.Sprintf("mountoptions=%s", strings.Join(*r.MountOptions, ";")))
} }
} }