-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvariables.tf
More file actions
93 lines (77 loc) · 2.31 KB
/
variables.tf
File metadata and controls
93 lines (77 loc) · 2.31 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
variable "subscription_id" {
type = string
description = "The Azure subscription ID"
}
variable "resource_group_name" {
type = string
description = "Name of the resource group"
}
variable "resource_group_location" {
type = string
description = "Location of the resource group"
}
variable "resource_group_tags" {
type = map(string)
description = "Tags for the resource group"
default = {
ManagedBy = "Terraform"
}
}
variable "cognitive_account_name" {
type = string
description = "Name of the cognitive account"
}
variable "cognitive_account_kind" {
type = string
description = "Type of the cognitive account"
}
variable "cognitive_account_sku_name" {
type = string
description = "SKU name of the cognitive account"
}
variable "cognitive_account_custom_subdomain_name" {
type = string
description = "Custom subdomain name of the cognitive account"
default = null
}
variable "cognitive_account_identity_type" {
type = string
description = "Type of identity for the cognitive account (SystemAssigned, UserAssigned, or SystemAssigned, UserAssigned)"
default = "SystemAssigned"
}
variable "cognitive_account_tags" {
type = map(string)
description = "Tags for the cognitive account"
default = {
ManagedBy = "Terraform"
}
}
variable "cognitive_deployment_name" {
type = string
description = "Name of the cognitive deployment"
}
variable "cognitive_deployment_model_format" {
type = string
description = "Format of the model of the cognitive deployment"
}
variable "cognitive_deployment_model_name" {
type = string
description = "Name of the model of the cognitive deployment"
}
variable "cognitive_deployment_model_version" {
type = string
description = "Version of the model of the cognitive deployment"
}
variable "cognitive_deployment_sku_name" {
type = string
description = "Name of the sku of the cognitive deployment"
}
variable "cognitive_deployment_sku_capacity" {
type = number
description = "Capacity of the sku of the cognitive deployment"
}
variable "cognitive_deployment_version_upgrade_option" {
type = string
description = "Version upgrade option for the cognitive deployment"
default = "OnceNewDefaultVersionAvailable"
}