-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
101 lines (85 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
variable "prefix" {
default = ""
type = string
description = "prefix to be used to name resources."
}
variable "app_settings" {
default = {}
type = map(any)
description = "Map of app settings which they will be configured in the function app."
}
variable "azure_region" {
default = ""
type = string
description = "Azure Region where resources will be deployed."
}
variable "deploy_render" {
default = false
type = bool
description = "Flag to deploy or not the image render for grafana."
}
variable "deploy_cdn" {
default = false
type = bool
description = "Flag to deploy or not a CDN on top of the Grafana WebApp."
}
variable "smtp_on" {
default = false
type = bool
description = "Flag to configure the smtp server for grafana."
}
variable "smtp_host" {
default = ""
type = string
description = "SMTP Server Host or IP with port."
}
variable "smtp_password" {
default = ""
type = string
description = "SMTP Server Password."
}
variable "smtp_user" {
default = ""
type = string
description = "SMTP User."
}
variable "smtp_from_address" {
default = ""
type = string
description = "SMTP From Address to use."
}
variable "smtp_from_name" {
default = ""
type = string
description = "SMTP From Name to use."
}
variable "grafana_docker_version" {
default = "DOCKER|grafana/grafana-oss:9.1.1"
type = string
description = "Path to dockerHub image."
}
variable "image_render_docker_version" {
default = "DOCKER|grafana/grafana-image-renderer"
type = string
description = "Path to dockerHub image"
}
variable "grafana_plan_sku" {
default = "Basic"
type = string
description = "SKU Type"
}
variable "grafana_plan_size" {
default = "B3"
type = string
description = "SKU Size"
}
variable "image_render_plan_sku" {
default = "Basic"
type = string
description = "SKU Type"
}
variable "image_render_plan_size" {
default = "B2"
type = string
description = "SKU Size"
}