-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
64 lines (51 loc) · 1.22 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
variable "environment" {}
variable "elastic_ver" {
type = string
default = ""
description = "elasticsearch version in grafana datasource info"
}
variable "index_name" {
default = ""
type = string
description = "index name to use in elasticsearch datasource"
}
variable "namespace" {
default = ""
description = "namespace to create all resources"
type = string
}
variable "grafana_version" {
default = ""
description = ""
type = string
}
variable "registry_url" {
default = ""
description = "Providing ECR registry url to terraform to pull image"
type = string
}
variable "cluster_name" {
default = ""
description = "EKS cluster name"
type = string
}
variable "backend_name" {
default = ""
description = "Backend name for resources"
type = string
}
variable "frontend_name" {
default = ""
description = "Frontend name for resources"
type = string
}
variable "region_zone_id" {
default = "Z23TAZ6LKFMNIO"
description = "Eu-north-1 zone id"
type = string
}
variable "hosted_zone_name" {
default = "jenkins-server.click"
description = "Hosted zone name"
type = string
}