38 lines
656 B
HCL
38 lines
656 B
HCL
variable "orientdb_data" {
|
|
type = map(string)
|
|
default = {
|
|
node_name = "orientdb"
|
|
node_data_disk_size = 10
|
|
node_data_disk_device = "/dev/vdb"
|
|
}
|
|
}
|
|
|
|
variable "orientdb_node_flavor" {
|
|
default = ""
|
|
}
|
|
|
|
variable "orientdb_nodes_count" {
|
|
default = ""
|
|
}
|
|
|
|
variable "orientdb_ip" {
|
|
type = list(string)
|
|
default = [ "192.168.10.5", "192.168.10.6", "192.168.10.7"]
|
|
}
|
|
|
|
variable "orientdb_cidr" {
|
|
type = list(string)
|
|
default = [ "192.168.10.5/32", "192.168.10.6/32", "192.168.10.7/32" ]
|
|
}
|
|
|
|
variable "orientdb_se_node_flavor" {
|
|
default = ""
|
|
}
|
|
|
|
variable "orientdb_se_ip" {
|
|
default = ""
|
|
}
|
|
variable "orientdb_se_cidr" {
|
|
default = ""
|
|
}
|