Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add enum description for attributes in ovh_me_installation_template_partition_scheme_partition #393

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,31 @@ resource "ovh_me_installation_template_partition_scheme_partition" "root" {

## Argument Reference

* `filesystem`: Partition filesystem.
* `filesystem`: Partition filesystem. Enum with possibles values:
- btrfs
- ext3
- ext4
- ntfs
- reiserfs
- swap
- ufs
- xfs
- zfs
* `mountpoint`: (Required) partition mount point.
* `order`: step or order. specifies the creation order of the partition on the disk
* `raid`: raid partition type.
* `raid`: raid partition type. Enum with possible values:
- raid0
- raid1
- raid10
- raid5
- raid6
* `scheme_name`: (Required) The partition scheme name.
* `size`: size of partition in MB, 0 => rest of the space.
* `template_name`: (Required) The template name of the partition scheme.
* `type`: partition type.
* `type`: partition type. Enum with possible values:
- lv
- primary
- logical
* `volume_name`: The volume name needed for proxmox distribution


Expand Down