-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
40 lines (32 loc) · 884 Bytes
/
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
output "public_ip" {
description = "Public elastic IP address of the DSF base instance"
value = local.public_ip
}
output "private_ip" {
description = "Private IP address of the DSF base instance"
value = local.private_ip
}
output "public_dns" {
description = "Public DNS of the elastic IP address of the DSF base instance"
value = local.public_dns
}
output "private_dns" {
description = "Private DNS of the elastic IP address of the DSF base instance"
value = aws_network_interface.eni.private_dns_name
}
output "iam_role" {
description = "IAM Role ARN of the DSF node"
value = local.role_arn
}
output "archiver_user" {
value = var.archiver_user
}
output "archiver_password" {
value = var.archiver_password
}
output "incoming_folder_path" {
value = local.incoming_folder_path
}
output "ssh_user" {
value = "cbadmin"
}