-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
46 lines (37 loc) · 889 Bytes
/
variables.tf
File metadata and controls
46 lines (37 loc) · 889 Bytes
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
variable "postgres_user" {
type = string
description = "postgres user"
}
variable "postgres_password" {
type = string
description = "postgres_password"
}
variable "s3_backend_bucket" {
type = string
description = "S3 backend bucket"
}
variable "aws_access_key_id" {
description = "aws access key id"
}
variable "aws_secret_access_key" {
description = "aws secret access key"
}
variable "aws_default_region" {
description = "aws default region"
}
variable "s3_frontend_bucket" {
type = string
description = "S3 frontend bucket"
}
variable "gf_security_admin_user" {
type = string
description = "gf security admin user"
}
variable "gf_security_admin_password" {
type = string
description = "gf security admin password"
}
variable "grafana_root_url" {
type = string
description = "grafana root url"
}