Newer
Older
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
variable "user_name" {
type = string
description = "user name for use with openstack"
}
variable "user_domain_name" {
type = string
default = "uab"
description = "the domain to use for the user"
}
variable "appcred_id" {
type = string
description = "The app credential id. Get one from https://dashboard.cloud.rc.uab.edu/identity/application_credentials/"
}
variable "appcred_name" {
type = string
description = "The name for your application credential"
}
variable "appcred_secret" {
type = string
description = "The secret key for your application credential"
}
variable "ssh_keypair" {
type = string
description = "ssh keypair name to use for authentication"
}
variable "base_image_name" {
type = string
default = "sles-15-sp3-x86_64"
description = "base image to use for the cluster"
}
variable "osd_node_count" {
type = number
default = 3
description = "amount of OSD nodes to create"
}