-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
44 lines (36 loc) · 946 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
variable "resource_group_name" {
type = string
description = "value of resource group name"
}
variable "resource_group_location" {
type = string
description = "value of resource group location"
}
variable "environment" {
type = string
description = "value of enviroment"
}
variable "app_service_plan_name" {
type = string
description = "value of app service plan name"
}
variable "app_service_name" {
type = string
description = "value of app service name"
}
variable "mssql_server_name" {
type = string
description = "value of mssql server name"
}
variable "mssql_database_name" {
type = string
description = "value of mssql database name"
}
variable "mssql_server_username" {
type = string
description = "value of mssql server username"
}
variable "mssql_server_password" {
type = string
description = "value of mssql server password"
}