-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
46 lines (42 loc) · 778 Bytes
/
variables.tf
File metadata and controls
46 lines (42 loc) · 778 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 "aws" {
sensitive = true
type = object({
access_key = string
secret_key = string
region = string
})
}
variable "homelab_postgres" {
sensitive = true
type = object({
host = string
port = number
username = string
password = string
})
}
variable "cloud_mongo" {
sensitive = true
type = object({
host = string
port = number
username = string
password = string
database = string
})
}
variable "ca_certs" {
sensitive = true
type = object({
common_name = string
organization = string
country = string
allowed_domains = list(string)
})
}
variable "client_certs" {
type = list(object({
common_name = string
sans = list(string)
}))
}