-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
39 lines (32 loc) · 1.01 KB
/
outputs.tf
File metadata and controls
39 lines (32 loc) · 1.01 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
output "public_ip" {
description = "Public IP address of the CipherTrust Manager instance"
value = local.public_ip
depends_on = [null_resource.set_password]
}
output "private_ip" {
description = "Private IP address of the CipherTrust Manager instance"
value = local.private_ip
depends_on = [null_resource.set_password]
}
output "public_dns" {
description = "Public DNS of the IP address of the CipherTrust Manager instance"
value = local.public_dns
depends_on = [null_resource.set_password]
}
output "private_dns" {
description = "Private DNS of the IP address of the CipherTrust Manager instance"
value = aws_network_interface.eni.private_dns_name
depends_on = [null_resource.set_password]
}
output "instance_id" {
value = aws_instance.cipthertrust_manager_instance.id
}
output "display_name" {
value = aws_instance.cipthertrust_manager_instance.tags.Name
}
output "ssh_user" {
value = var.ssh_user
}
output "web_console_user" {
value = local.web_console_username
}