Skip to content

Commit

Permalink
azurerm_api_management - update capacity to allow increasing the apim…
Browse files Browse the repository at this point in the history
… scalability to 31 (#28427)

Microsoft now allows to sacle up the APIM instance to 31 per region but it is limited by terraform. So with the update in validation it can be updated to 31 using terraform.
MS Docs: https://github.com/MicrosoftDocs/azure-docs/blob/main/includes/api-management-service-limits.md
  • Loading branch information
dasaditya07 authored Jan 7, 2025
1 parent 50e6ebc commit 91dd84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/apimanagement/api_management_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func resourceApiManagementSchema() map[string]*pluginsdk.Schema {
Type: pluginsdk.TypeInt,
Optional: true,
Computed: true,
ValidateFunc: validation.IntBetween(0, 12),
ValidateFunc: validation.IntBetween(0, 31),
},

"zones": commonschema.ZonesMultipleOptional(),
Expand Down

0 comments on commit 91dd84f

Please sign in to comment.