-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
69 lines (59 loc) · 1.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
output "public_ip" {
description = "Public elastic IP address of the DSF instance"
value = module.mx.public_ip
depends_on = [
module.mx.ready
]
}
output "private_ip" {
description = "Private IP address of the DSF instance"
value = module.mx.private_ip
depends_on = [
module.mx.ready
]
}
output "public_dns" {
description = "Public dns of elastic IP address of the DSF instance"
value = module.mx.public_dns
depends_on = [
module.mx.ready
]
}
output "private_dns" {
description = "Private dns address of the DSF instance"
value = module.mx.private_dns
depends_on = [
module.mx.ready
]
}
output "iam_role" {
description = "IAM Role ARN of the DSF node"
value = module.mx.iam_role
}
output "display_name" {
description = "Display name"
value = module.mx.display_name
}
output "ssh_user" {
description = "Ssh username"
value = var.ssh_user
}
output "instance_id" {
value = module.mx.instance_id
}
output "configuration" {
description = "Pre-configured site and service group available for use"
value = {
default_site = local.site
default_server_group = local.server_group
}
depends_on = [
null_resource.import_configuration
]
}
output "web_console_user" {
value = "admin"
}
output "large_scale_mode" {
value = var.large_scale_mode
}