Skip to content

Commit c941741

Browse files
authored
Merge pull request #524 from h0tw1r3/lxc-rootfs-flags
Support rootfs flags
2 parents 402fa29 + e6087c5 commit c941741

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

proxmox/resource_lxc.go

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,26 @@ func resourceLxc() *schema.Resource {
320320
Optional: true,
321321
Elem: &schema.Resource{
322322
Schema: map[string]*schema.Schema{
323+
"acl": {
324+
Type: schema.TypeBool,
325+
Optional: true,
326+
},
327+
"quota": {
328+
Type: schema.TypeBool,
329+
Optional: true,
330+
},
331+
"replicate": {
332+
Type: schema.TypeBool,
333+
Optional: true,
334+
},
335+
"ro": {
336+
Type: schema.TypeBool,
337+
Optional: true,
338+
},
339+
"shared": {
340+
Type: schema.TypeBool,
341+
Optional: true,
342+
},
323343
"storage": {
324344
Type: schema.TypeString,
325345
ForceNew: true,

0 commit comments

Comments
 (0)