-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
48 lines (41 loc) · 940 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
41
42
43
44
45
46
47
48
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 "display_name" {
description = "Display name"
value = module.mx.display_name
}
output "ssh_user" {
description = "SSH username"
value = module.mx.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
}