-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
43 lines (35 loc) · 1.26 KB
/
outputs.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
output "public_ip" {
description = "Public IP address of the DSF instance"
value = module.gw_instance.public_ip
}
output "private_ip" {
description = "Private IP address of the DSF instance"
value = module.gw_instance.private_ip
}
output "principal_id" {
description = "Principal ID of the DSF node"
value = module.gw_instance.principal_id
}
output "display_name" {
description = "Display name of the instance under the DSF web console"
value = module.gw_instance.display_name
}
output "ssh_user" {
description = "Ssh username"
value = module.gw_instance.ssh_user
}
output "instance_id" {
value = module.gw_instance.instance_id
}
output "sonarw_public_key" {
description = "The public key (also known as the sonarw public SSH key) should be used for federation and for connecting an Agentless Gateway"
value = module.gw_instance.main_node_sonarw_public_key
}
output "sonarw_private_key" {
description = "The private key (also known as the sonarw private SSH key) should be used for federation and for connecting DR hadr DSF Hub"
value = module.gw_instance.main_node_sonarw_private_key
}
output "jsonar_uid" {
description = "Id of the instance in DSF portal"
value = module.gw_instance.jsonar_uid
}