Skip to content

Commit

Permalink
Merge pull request #524 from h0tw1r3/lxc-rootfs-flags
Browse files Browse the repository at this point in the history
Support rootfs flags
  • Loading branch information
mleone87 authored Apr 13, 2022
2 parents 402fa29 + e6087c5 commit c941741
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions proxmox/resource_lxc.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,26 @@ func resourceLxc() *schema.Resource {
Optional: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"acl": {
Type: schema.TypeBool,
Optional: true,
},
"quota": {
Type: schema.TypeBool,
Optional: true,
},
"replicate": {
Type: schema.TypeBool,
Optional: true,
},
"ro": {
Type: schema.TypeBool,
Optional: true,
},
"shared": {
Type: schema.TypeBool,
Optional: true,
},
"storage": {
Type: schema.TypeString,
ForceNew: true,
Expand Down

0 comments on commit c941741

Please sign in to comment.