-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
49 lines (40 loc) · 1018 Bytes
/
variables.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
variable "name" {
default = "mssql-deployment-student1"
description = "The name of the MySQL deployment"
}
variable "namespace" {
default = "student1"
description = "The kubernetes namespace to run the mssql server in."
}
variable "selectors" {
type = map(string)
default = {}
}
variable "labels" {
type = map(string)
default = {}
}
variable "pvc" {
default = "pvc-sql-data01"
description = "The name of the PVC."
}
variable "mssql_pvc_size" {
default = "50Gi"
description = "The storage size of the PVC"
}
variable "mssql_storage_class" {
description = "The k8s storage class for the PVC used."
default = "sql-sc-1"
}
variable "mssql_image_url" {
default = "mcr.microsoft.com/mssql/rhel/server"
description = "The image url of the mssql version wanted"
}
variable "mssql_image_tag" {
default = "2019-latest"
description = "The image tag of the mssql version wanted"
}
variable "adminpassword" {
default = "HPeinvent@"
description = "SA Password"
}