-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvariables.tf
More file actions
60 lines (49 loc) · 1.41 KB
/
variables.tf
File metadata and controls
60 lines (49 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
variable "subscription_id" {
description = "Azure subscription ID"
type = string
}
variable "location" {
description = "Azure region"
type = string
default = "East US"
}
variable "resource_group_name" {
description = "Name of the resource group for the AI Foundry Project"
type = string
}
variable "keyvault_name" {
description = "The name of the key vault"
type = string
}
variable "aiservices_name" {
description = "The name of the AI services account"
type = string
}
variable "aifoundry_name" {
description = "The name of the AI Foundry Hub"
type = string
}
variable "aifoundryproject_name" {
description = "The name of the AI Foundry Project"
type = string
}
variable "storage_account_name" {
description = "The name of the storage account"
type = string
}
variable "openai_account_name" {
description = "Name of the Azure OpenAI (Cognitive Services) account"
type = string
}
variable "search_service_name" {
description = "Name of the Azure Cognitive Search service"
type = string
}
variable "developer_principal_id" {
description = "Principal ID for the Azure AI Developer (assigned at the resource group level)"
type = string
}
variable "openai_user_object_id" {
description = "Object ID for the Cognitive Services Open AI User (assigned at the resource group level)"
type = string
}