-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
32 lines (26 loc) · 770 Bytes
/
outputs.tf
File metadata and controls
32 lines (26 loc) · 770 Bytes
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
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 "display_name" {
value = aws_instance.dsf_base_instance.tags.Name
}
output "ssh_user" {
value = "cbadmin"
}