Please vote on this issue by adding a :thumbsup: reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave comments along the lines of "+1", "me too" or "any updates", 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.
╷
│ Error: 1 error occurred:
│ * service tier 'Hyperscale' PRMS must have a 'capacity'(4) of vCores
│
│
│
│ with module.mssql-epool.azurerm_mssql_elasticpool.mssql_epool,
│ on ../modules/mssql_epool/module.tf line 1, in resource "azurerm_mssql_elasticpool" "mssql_epool":
│ 1: resource "azurerm_mssql_elasticpool" "mssql_epool" {
│
╵
Expected Behaviour
Hyperscale PRMS elasticpool created with 4vCores
Actual Behaviour
Terraform plan fails with
╷
│ Error: 1 error occurred:
│ * service tier 'Hyperscale' PRMS must have a 'capacity'(4) of vCores
Steps to Reproduce
Run terraform plan with the following sku configuration
sku {
name = "HS_PRMS"
tier = "Hyperscale"
family = "PRMS"
capacity = 4
}
Is there an existing issue for this?
Community Note
Terraform Version
1.9.8
AzureRM Provider Version
4.8.0
Affected Resource(s)/Data Source(s)
azurerm_mssql_elasticpool
Terraform Configuration Files
Debug Output/Panic Output
Expected Behaviour
Hyperscale PRMS elasticpool created with 4vCores
Actual Behaviour
Terraform plan fails with
╷ │ Error: 1 error occurred: │ * service tier 'Hyperscale' PRMS must have a 'capacity'(4) of vCores
Steps to Reproduce
Run terraform plan with the following sku configuration
sku { name = "HS_PRMS" tier = "Hyperscale" family = "PRMS" capacity = 4 }
Important Factoids
N/A
References
No response