-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
51 lines (43 loc) · 1.34 KB
/
variables.tf
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
variable "subscription_id" {
description = "The Azure subscription ID."
type = string
}
variable "resource_group_owner" {
description = "The owner of the resource group."
type = string
}
variable "resource_group_location" {
type = string
default = "eastus"
description = "Location of the resource group."
}
variable "resource_group_name_prefix" {
type = string
default = "rg"
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
}
variable "system_node_pool_vm_size" {
type = string
description = "The size of the Virtual Machine."
default = "Standard_D2_v2"
}
variable "system_node_pool_node_count" {
type = number
description = "The initial quantity of nodes for the system node pool."
default = 1
}
variable "ray_node_pool_vm_size" {
type = string
description = "The size of the Virtual Machine."
default = "Standard_D4s_v4"
}
variable "msi_id" {
type = string
description = "The Managed Service Identity ID. Set this value if you're running this example using Managed Identity as the authentication method."
default = null
}
variable "username" {
type = string
description = "The admin username for the new cluster."
default = "azureadmin"
}