This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/iac/terraform/variables.tf

73 lines
1.2 KiB
Terraform
Raw Permalink Normal View History

2022-11-03 20:41:13 +00:00
variable "location" {
description = ""
type = string
}
variable "uniquer" {
description = ""
type = string
default = null
}
variable "resources_prefix" {
description = ""
type = string
default = null
}
variable "docker_registry_server_url" {
description = ""
type = string
default = null
}
variable "docker_registry_server_username" {
description = ""
type = string
default = null
}
variable "docker_registry_server_password" {
description = ""
type = string
default = null
sensitive = true
}
variable "mssql_server_administrator_login" {
description = ""
type = string
default = null
}
variable "mssql_server_administrator_login_password" {
description = ""
type = string
default = null
sensitive = true
}
variable "apipoi_base_image_tag" {
description = ""
type = string
default = null
}
variable "apitrips_base_image_tag" {
description = ""
type = string
default = null
}
variable "apiuserjava_base_image_tag" {
description = ""
type = string
default = null
}
variable "apiuserprofile_base_image_tag" {
description = ""
type = string
default = null
}