-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathvariables-naming.tf
61 lines (52 loc) · 1.44 KB
/
variables-naming.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
56
57
58
59
60
61
# Generic naming variables
variable "name_prefix" {
description = "Optional prefix for the generated name."
type = string
default = ""
}
variable "name_suffix" {
description = "Optional suffix for the generated name."
type = string
default = ""
}
# Custom naming override
variable "function_app_name_prefix" {
description = "Function App name prefix."
type = string
default = ""
}
variable "function_app_custom_name" {
description = "Custom name for function app."
type = string
default = ""
}
variable "staging_slot_custom_name" {
type = string
description = "Custom name of the Function App slot."
default = null
}
variable "application_insights_name_prefix" {
description = "Application Insights name prefix."
type = string
default = ""
}
variable "application_insights_custom_name" {
description = "Custom name for application insights deployed with function app."
type = string
default = ""
}
variable "storage_account_name_prefix" {
description = "Storage Account name prefix."
type = string
default = ""
}
variable "storage_account_custom_name" {
description = "Custom name of the Storage account to attach to function."
type = string
default = null
}
variable "service_plan_custom_name" {
description = "Name of the App Service Plan, generated if not set."
type = string
default = ""
}