Is there an existing issue for this?
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment and review the contribution guide to help.
Description
Hello,
there is a feature In Preview for Premium SSD V2 storage disks which is cheaper and flexible for tuning. It would be great to have azurerm_postgresql_flexible_server resource parameters for configuring such as disk type, IOPS and throughput besides disk size.

New or Affected Resource(s)/Data Source(s)
azurerm_postgresql_flexible_server
Potential Terraform Configuration
resource "azurerm_postgresql_flexible_server" "example" {
name = "example-psqlflexibleserver"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
version = "12"
delegated_subnet_id = azurerm_subnet.example.id
private_dns_zone_id = azurerm_private_dns_zone.example.id
administrator_login = "psqladmin"
administrator_password = "H@Sh1CoR3!"
zone = "1"
storage_mb = 32768
storage_type = "PremiumV2"
storage_iops = 3000
storage_throughput = 125
sku_name = "GP_Standard_D4s_v3"
depends_on = [azurerm_private_dns_zone_virtual_network_link.example]
}
References
Is there an existing issue for this?
Community Note
Description
Hello,

there is a feature In Preview for Premium SSD V2 storage disks which is cheaper and flexible for tuning. It would be great to have
azurerm_postgresql_flexible_serverresource parameters for configuring such as disk type, IOPS and throughput besides disk size.New or Affected Resource(s)/Data Source(s)
azurerm_postgresql_flexible_server
Potential Terraform Configuration
References