disk offering updates - #8
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This pull request extends the CloudStack Terraform Provider's
cloudstack_disk_offeringresource with comprehensive support for additional disk offering configuration options.Changes
Enhanced Disk Offering Resource Schema
The
cloudstack_disk_offeringresource has been significantly expanded to support the following new configuration parameters:Performance & I/O Settings:
cache_mode- Disk caching mode configurationiops_read_rate- Read I/O operations per secondiops_read_rate_max- Maximum read I/O operations per secondiops_read_rate_max_length- Read rate burst lengthiops_write_rate- Write I/O operations per secondiops_write_rate_max- Maximum write I/O operations per secondiops_write_rate_max_length- Write rate burst lengthConfiguration & Scoping:
disk_offering_strictness- Enforce strict disk sizingdomain_id- Associated domain IDs (list support)zone_id- Associated zone IDs (list support)provisioning_type- Disk provisioning typestorage_type- Storage backend typetags- Resource tags for organizationNested Configurations:
hypervisorblock - Hypervisor-specific I/O rate limits (bytes_read_rate, bytes_write_rate, etc.)storageblock - Storage tier configuration (min/max IOPS, customized IOPS flag, hypervisor snapshot reserve)Implementation Updates