-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
executable file
·39 lines (27 loc) · 976 Bytes
/
variables.tf
File metadata and controls
executable file
·39 lines (27 loc) · 976 Bytes
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
variable "prefix" {
description = "The prefix which should be used for all"
}
variable "location" {
description = "The Azure Region in which all resources should be created."
}
variable "password" {
description = "The supplied password must be between 6-72 characters long and must satisfy azure password complexity requirements"
}
variable "psqldbpassword" {
description = "PSql db password The supplied password must be between 6-72 characters long and must satisfy azure password complexity requirements"
}
variable "psqldbname" {
description = "postgresdb server name this name should be unique in region"
default = "pstgrestak"
}
variable "domainname" {
description = "Enter a domain name for application should be unique in region"
default = "serviantechapp"
}
#variable "aport" {
# description = "port, which need to be exposed for the application"
# default = "3000"
#}
#variable "sshkey" {
# description = "load a puplic key to vm"
#}