-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
53 lines (46 loc) · 1.42 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
49
50
51
52
53
variable "gw_info" {
type = object({
gw_ip_address = string
gw_federation_ip_address = string
gw_private_ssh_key_path = string
gw_ssh_user = string
})
nullable = false
description = "Agentless Gateway communication information"
}
variable "hub_info" {
type = object({
hub_ip_address = string
hub_federation_ip_address = string
hub_private_ssh_key_path = string
hub_ssh_user = string
})
nullable = false
description = "DSF Hub communication information"
}
variable "gw_proxy_info" {
type = object({
proxy_address = string
proxy_private_ssh_key_path = string
proxy_ssh_user = string
})
description = "Proxy address, private key file path and user used for ssh to a private Agentless Gateway. Keep empty if a proxy is not used."
default = {
proxy_address = null
proxy_private_ssh_key_path = null
proxy_ssh_user = null
}
}
variable "hub_proxy_info" {
type = object({
proxy_address = string
proxy_private_ssh_key_path = string
proxy_ssh_user = string
})
description = "Proxy address, private key file path and user used for ssh to a private DSF Hub. Keep empty if a proxy is not used."
default = {
proxy_address = null
proxy_private_ssh_key_path = null
proxy_ssh_user = null
}
}