-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
39 lines (34 loc) · 985 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
# ------------------ #
# GENERAL VARIABLES #
# ------------------ #
variable "location" {
description = "Defines the location to use for all resources"
type = string
}
variable "default_tags" {
description = "Defines the tags to set for all resources"
type = any
default = {}
}
# ------------------------- #
# RESOURCE GROUP VARIABLES #
# ------------------------- #
variable "rg_name" {
description = "Name of the resource group to be created"
type = string
}
# ----------------------- #
# FUNCTION APP VARIABLES #
# ----------------------- #
variable "func_name" {
description = "Defines the name to use for this function app"
type = string
}
variable "plan_name" {
description = "Defines the name to use for app service plan associated with this function app"
type = string
}
variable "sa_name" {
description = "The backend storage account name which will be used by this Function App"
type = string
}