-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
48 lines (44 loc) · 1.64 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
## ================================================================================================
## Mikrotik Variables
## ================================================================================================
variable "mikrotik_username" {
type = string
default = "admin"
description = "The username to authenticate against the RouterOS API."
}
variable "mikrotik_password" {
type = string
description = "The password to authenticate against the RouterOS API."
sensitive = true
}
## ================================================================================================
## PPPoE Connection Variables
## ================================================================================================
variable "digi_pppoe_password" {
type = string
sensitive = true
description = "The PPPoE password for the Digi connection."
}
variable "digi_pppoe_username" {
type = string
sensitive = true
description = "The PPPoE username for the Digi connection."
}
## ================================================================================================
## WiFi Variables
## ================================================================================================
variable "untrusted_wifi_password" {
type = string
sensitive = true
description = "The password for the Untrusted Wi-Fi network."
}
variable "guest_wifi_password" {
type = string
sensitive = true
description = "The password for the Guest Wi-Fi network."
}
variable "iot_wifi_password" {
type = string
sensitive = true
description = "The password for the IoT Wi-Fi network."
}