-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
54 lines (44 loc) · 1.55 KB
/
outputs.tf
File metadata and controls
54 lines (44 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
53
54
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 "public_dns" {
description = "Public dns of IP address of the DSF instance"
value = module.gw_instance.public_dns
}
output "private_dns" {
description = "Private dns address of the DSF instance"
value = module.gw_instance.private_dns
}
output "iam_role" {
description = "IAM Role ARN of the DSF node"
value = module.gw_instance.iam_role
}
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" {
description = "AWS EC2 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
}