Skip to content

Commit

Permalink
#542 Add Unity tf 2
Browse files Browse the repository at this point in the history
  • Loading branch information
tariqksoliman committed May 22, 2024
1 parent a839a0a commit e89723c
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions sds/unity/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,78 @@ variable "installprefix" {
description = "The management console install prefix"
type = string
default = "UnknownPrefix"
}

variable "server" {
default = "node"
}
variable "auth" {
default = "csso"
}
variable "node_env" {
default = "production"
}
variable "csso_lead_group" {
}
variable "session_user" {
description = "application account for authorization to other services"
}
variable "session_pass" {
description = "application account for authorization to other services"
}
variable "ingest_rate" {
default = "0 7 * * *"
}
variable "db_host" {
description = "postgres db endpoint"
}
variable "db_port" {
description = "need more info"
default = 5432
}
variable "db_name" {
description = "postgres db name"
}
variable "db_user" {
description = "postgres db user"
}
variable "db_password" {
description = "postgres db password"
}
variable "tactical_host" {
description = "url to tactical target db"
}
variable "places_host" {
description = "url to PLACES"
}
variable "science_intent_host" {
description = "url to science intent api"
}
variable "mtttt_host" {
description = "url to mtttt api"
}
variable "enable_mmgis_websockets" {
description = "enables websockets so that clients can immediately respond to backend configuration changes"
default = false
}
variable "verbose_logging" {
description = "logs a bunch of extra stuff for development purposes"
default = false
}
variable "hide_config" {
description = "make the configure page inaccessible to everyone"
default = false
}
variable "configconfig_path" {
description = "the path to a json file that sets up the configure page that overrides the database's recor"
default = ""
}
variable "force_config_path" {
description = "the path to a json config file that acts as the only configured mission for the instance"
default = ""
}
variable "leads" {
description = "array of strings - default [] - when not using AUTH=csso, this is a list of usernames to be treated as leads (users with elevated permissions)"
type = list(string)
default = []
}

0 comments on commit e89723c

Please sign in to comment.