From ccec1647edc88f93fcf76a2bc74608c7f818d097 Mon Sep 17 00:00:00 2001 From: Sam Chou Date: Wed, 6 Nov 2024 12:30:27 -0800 Subject: [PATCH] Add new DataZoneStandard sku to azurerm_cognitive_deployment --- internal/services/cognitive/cognitive_deployment_resource.go | 1 + website/docs/r/cognitive_deployment.html.markdown | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/services/cognitive/cognitive_deployment_resource.go b/internal/services/cognitive/cognitive_deployment_resource.go index b7c18eb74511..9b7235e932d2 100644 --- a/internal/services/cognitive/cognitive_deployment_resource.go +++ b/internal/services/cognitive/cognitive_deployment_resource.go @@ -117,6 +117,7 @@ func (r CognitiveDeploymentResource) Arguments() map[string]*pluginsdk.Schema { ForceNew: true, ValidateFunc: validation.StringInSlice([]string{ "Standard", + "DataZoneStandard", "GlobalBatch", "GlobalStandard", "ProvisionedManaged", diff --git a/website/docs/r/cognitive_deployment.html.markdown b/website/docs/r/cognitive_deployment.html.markdown index f8a5891938a9..a60624b3eea3 100644 --- a/website/docs/r/cognitive_deployment.html.markdown +++ b/website/docs/r/cognitive_deployment.html.markdown @@ -72,7 +72,7 @@ A `model` block supports the following: A `sku` block supports the following: -* `name` - (Required) The name of the SKU. Possible values include `Standard`, `GlobalBatch`, `GlobalStandard` and `ProvisionedManaged`. +* `name` - (Required) The name of the SKU. Possible values include `Standard`, `DataZoneStandard`, `GlobalBatch`, `GlobalStandard` and `ProvisionedManaged`. * `tier` - (Optional) Possible values are `Free`, `Basic`, `Standard`, `Premium`, `Enterprise`. Changing this forces a new resource to be created.