Skip to content
Snippets Groups Projects
variables.tf 1005 B
Newer Older
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"
}