-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
43 lines (37 loc) · 1.05 KB
/
Copy pathvariables.tf
File metadata and controls
43 lines (37 loc) · 1.05 KB
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
variable "domain" {
type = string
description = "Domain where proxy lives"
default = "theslava.com"
}
variable "profile" {
type = string
description = "AWS profile for auth"
default = "terraform"
}
variable "region" {
type = string
description = "Region where everything should be deployed"
default = "us-west-2"
}
variable "services" {
type = map(number)
description = "Services to proxy — keys are names, values are upstream ports"
default = { homeassistant = 8123, jellyfin = 8096, seerr = 5055 }
}
variable "namecom_endpoint" {
type = string
description = "Name.com Core API base URL (dev or production)"
default = "https://api.dev.name.com"
}
variable "namecom_username" {
type = string
description = "Name.com API username (sandbox user has -test suffix)"
default = ""
sensitive = true
}
variable "namecom_token" {
type = string
description = "Name.com API token — treated as password for Basic Auth"
default = ""
sensitive = true
}