-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
56 lines (46 loc) · 1.23 KB
/
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
49
50
51
52
53
54
55
variable "tags" {
description = "Tags to be applied to the function app"
type = map(string)
default = {}
}
variable "userDefinedString" {
description = "(Required) UserDefinedString part of the name of the function app"
type = string
}
variable "env" {
description = "(Required) Env part of the name of the function app"
type = string
}
variable "group" {
description = "(Required) Group part of the name of the function app"
type = string
}
variable "project" {
description = "(Required) Project part of the name of the function app"
type = string
}
variable "resource_groups" {
description = "(Required) List of resource groups in the target project"
type = any
default = null
}
variable "location" {
description = "Azure location where the function will be located"
type = string
default = "canadacentral"
}
variable "linux_function" {
description = "Object description all the function parameters"
type = any
default = {}
}
variable "asp" {
description = "Object containing a map of name and ID for the App Service Plan in the target subscription"
type = any
default = null
}
variable "subnets" {
description = "Object containing subnet objects of the target project"
type = any
default = {}
}