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

[Bug]: Missing options for storage efficiency #383

Open
faboulaws opened this issue Jan 29, 2025 · 0 comments
Open

[Bug]: Missing options for storage efficiency #383

faboulaws opened this issue Jan 29, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@faboulaws
Copy link

faboulaws commented Jan 29, 2025

Terraform Core Version

1.7.4

ONTAP Provider Version

2.0.1

Affected Resource(s)

  • netapp-ontap_storage_volume_resource

Expected Behavior

Provide options for:

  • compaction
  • deduplication
  • etc.

Currently, we only have compression

Actual Behavior

None of the options above is available.

Relevant Error/Panic Output Snippet

Terraform Configuration Files

resource "netapp-ontap_storage_volume_resource" "ontap_vol" {
  cx_profile_name = "aws"
  name            = "vol1"
  svm_name        = "mySvm"
  aggregates = [
    {
      name = "aggr1"
    }
  ]
  space = {
    size      = 20480
    size_unit = "mb"
  }
  efficiency {
   compression = "none"
  dedupe = "both" # not supported
  compaction = "inline" # not supported
}
 
}

Steps to Reproduce

Running terraform apply

Debug Output

No response

Panic Output

No response

Important Factoids

No response

References

See ONTAP REST API for further reference.

Would you like to implement a fix?

None

@faboulaws faboulaws added the bug Something isn't working label Jan 29, 2025
@suhasbshekar suhasbshekar added enhancement New feature or request and removed bug Something isn't working labels Jan 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: Future
Development

No branches or pull requests

2 participants