Skip to content

Netapp Pool Size restricted to 4TB-500TB #567

@frozentank

Description

@frozentank

Terraform Version Details

Azure now supports Netapp Pools sizes as small as 1TB and as large as 2048TB. In order to configure pools smaller than 4TB there is a restriction that the Network features are set to Standard.

Right now, there is a validation that restricts all pools to 4-500TB.

validation {
condition = var.netapp_size_in_tb != null ? var.netapp_size_in_tb >= 4 && var.netapp_size_in_tb <= 500 : null
error_message = "ERROR: netapp_size_in_tb - value must be between 4 and 500."
}
}

See here for more details on the Sizing rules.

Terraform Variable File Details

No response

Steps to Reproduce

Attempt to set the netapp_size_in_tb to 1.

Expected Behavior

Terraform should produce a Netapp Volume with a size of 1TB

Actual Behavior

Terraform plan fails to validate as the validation rule fails.

Additional Context

No response

References

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingnewAdded to an issue when it's new ;)staleOpen for 30 days with no activity

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions