-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathvariables.tf
More file actions
64 lines (46 loc) · 1.57 KB
/
Copy pathvariables.tf
File metadata and controls
64 lines (46 loc) · 1.57 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
variable "prefix" {
description = "The Prefix used for all CycleCloud VM resources"
default = "cc-tf"
}
variable "location" {
description = "The Azure Region in which to run CycleCloud"
default = "westus2"
}
variable "machine_type" {
description = "The Azure Machine Type for the CycleCloud VM"
default = "Standard_DS4_v2"
}
variable "os_disk_size_gb" {
description = "The size of the OS disk for the CycleCloud VM (should be >= 128GB and >= 256 for large clusters)"
default = "128"
}
variable "cyclecloud_computer_name" {
description = "The private hostname for the CycleCloud VM"
default = "cyclecloud"
}
variable "cyclecloud_dns_label" {
description = "An optional short public DNS name/label for the CycleCloud VM"
}
variable "cyclecloud_username" {
description = "The username for the initial CycleCloud Admin user and VM user"
}
variable "cyclecloud_password" {
description = "The initial password for the CycleCloud Admin user"
}
variable "cyclecloud_user_publickey" {
description = "The public key for the initial CycleCloud Admin user and VM user"
}
# Storage account name can contain only lowercase letters and numbers.
variable "cyclecloud_storage_account" {
description = "Name of storage account to use for Azure CycleCloud storage locker"
default = "cctfstorage"
}
variable "cyclecloud_tenant_id" {
description = "Service Principle Tenant ID"
}
variable "cyclecloud_application_id" {
description = "Service Principle Application ID"
}
variable "cyclecloud_application_secret" {
description = "Service Principle Application Secret"
}