File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ resource "azurerm_storage_account" "example" {
52
52
53
53
// AI Services Account
54
54
resource "azurerm_ai_services" "aiserviceaccount" {
55
- name = " aiservicesbx1test "
55
+ name = var . aiservices_name
56
56
location = azurerm_resource_group. rg . location
57
57
resource_group_name = azurerm_resource_group. rg . name
58
58
sku_name = " S0"
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ subscription_id = "<your_subscription_id>"
2
2
resource_group_name = " RG-ai-foundryx1"
3
3
location = " East US"
4
4
storage_account_name = " aiagentssabx1"
5
+ aiservices_name = " aiservicesbx1test"
5
6
keyvault_name = " aiagentkvtestbx1"
6
7
openai_account_name = " aoaibx1test"
7
8
search_service_name = " aisearchbx1test"
Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ variable "keyvault_name" {
19
19
type = string
20
20
}
21
21
22
+ variable "aiservices_name" {
23
+ description = " The name of the AI services account"
24
+ type = string
25
+ }
26
+
22
27
variable "storage_account_name" {
23
28
description = " The name of the storage account"
24
29
type = string
You can’t perform that action at this time.
0 commit comments