-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputs.tf
54 lines (46 loc) · 1.08 KB
/
inputs.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
52
53
variable "cyverse_user" {
type = string
description = "string, the cyverse username"
default=""
}
variable "cyverse_asset_config_dir" {
type = string
description = "string, path to the cyverse asset configuration directory"
}
variable "cyverse_pass" {
type = string
description = "string, cyverse password"
}
variable "model_path_override" {
type = string
description = "string, path to the model file"
default = ""
}
variable "model_version_override" {
type = string
description = "string, branch, commit, or tag of the model"
default = ""
}
# The following is minimally required for cacao
variable "username" {
type = string
description = "name of user"
default = "notused"
}
# this is minimumally needed
variable "instance_name" {
type = string
description = "name of instance"
}
# this is needed for ionosphere
variable "power_state" {
type = string
description = "power state of instance"
default = "active"
}
# this is needed to render in ionosphere
variable "project" {
type = string
description = "project name"
default = ""
}