hashicorp / terraform-provider-azurerm

Terraform provider for Azure Resource Manager
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs
Mozilla Public License 2.0
4.52k stars 4.6k forks source link

Support for Computer Vision Autoscale feature #18022

Open OscarCanek opened 2 years ago

OscarCanek commented 2 years ago

Is there an existing issue for this?

Community Note

Description

A new feature was released for Computer Vision, the Autoscale feature.

This feature allows customers to access to higher rate limits on their Cognitive Service resources.

More info: https://docs.microsoft.com/en-us/azure/cognitive-services/autoscale?tabs=portal https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/cognitive-services/autoscale.md

New or Affected Resource(s)/Data Source(s)

azurerm_cognitive_account

Potential Terraform Configuration

resource "azurerm_cognitive_account" "example" {
  name                = "example-account"
  location            = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name
  kind                = "ComputerVision"

  autoscale = true

  sku_name = "S0"

  tags = {
    Acceptance = "Test"
  }
}

References

https://docs.microsoft.com/en-us/azure/cognitive-services/autoscale?tabs=portal https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/cognitive-services/autoscale.md

Viguro79 commented 6 months ago

Same need for others cognitives services : document intelligence ; custom vision predicition Looks like it's already implemented in v3.33 => dynamic_throttling_enabled