forked from aztfmod/terraform-azurerm-caf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60668ad
commit 4ccbe99
Showing
4 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
examples/cognitive_services/200-cognitive-services-deployment/configuration.tfvars
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
global_settings = { | ||
default_region = "region1" | ||
regions = { | ||
region1 = "westus" | ||
} | ||
random_length = 5 | ||
} | ||
|
||
resource_groups = { | ||
test-rg = { | ||
name = "rg-alz-caf-test-1" | ||
} | ||
} | ||
|
||
cognitive_services_account = { | ||
test_account-1 = { | ||
resource_group = { | ||
# accepts either id or key to get resource group id | ||
# id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup1" | ||
# lz_key = "examples" | ||
key = "test-rg" | ||
} | ||
name = "cs-alz-caf-test-1" | ||
kind = "OpenAI" | ||
sku_name = "S0" | ||
tags = { | ||
env = "test" | ||
} | ||
# you must first agree to the Responsible AI terms for that resource type in your Azure subscription. This is a legal agreement that must be accepted in the Azure Portal before you can proceed with deployment via Terraform. | ||
# https://learn.microsoft.com/en-us/legal/cognitive-services/openai/limited-access | ||
deployment = { | ||
gpt-35-turbo = { | ||
name = "gpt-35-turbo" | ||
model = { | ||
name = "gpt-35-turbo" | ||
format = "OpenAI" | ||
version = "0301" | ||
} | ||
scale = { | ||
type = "Standard" | ||
capacity = 1 | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters