-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
33 lines (28 loc) · 920 Bytes
/
variables.tf
File metadata and controls
33 lines (28 loc) · 920 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
variable "env" {
type = string
description = "Environment identifier: prod, stage, ..."
}
variable "certificate_arn" {
type = string
description = "ARN of an existing SSL/TLS certificate in ACM, see https://us-east-1.console.aws.amazon.com/acm/home?region=us-east-1#/certificates/list"
}
variable "encryption_key" {
type = string
sensitive = true
description = "Base64 encoded 256 bit (32 byte) secret key"
}
variable "password_salt" {
type = string
sensitive = true
description = "Password salt used for creating the key that encrypts/decrypts the user encryption key"
}
variable "signing_secret" {
type = string
sensitive = true
description = "Secret used for signing the API key of the user"
}
variable "basic_auth" {
type = string
sensitive = true
description = "Basic authentication credentials in the form username:password"
}