-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputs.tf
35 lines (32 loc) · 905 Bytes
/
inputs.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
variable "ip" {
type = string
validation {
condition = can(regex("^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$",var.ip))
error_message = "Invalid IP address provided."
}
default = "192.168.0.111"
}
variable "labels" {
type = list(string)
default = [
"12mm.label",
"24mm.label",
"large_54x70.label",
"large_address_36x89.label"
]
}
variable "windrv_intermec_files" {
type = list(string)
default = [
"Defaults[SS]_2022.1.0.0.sds",
"Seagull_V3_ConfigDispatcher.dll",
"Seagull_V3_NetMonDispatcher.dll",
"Seagull_V3_PrintDispatcher.dll",
"idpSS_2022.1.0.0.ini",
"idpSSenu_2022.1.0.0.chm",
"ss#base_2022.1.0.0.cab",
"ss#base_2022.1.0.0.ddz",
"ss#idp_2022.1.0.0.cab",
"ss#idp_2022.1.0.0.ddz"
]
}