-
Notifications
You must be signed in to change notification settings - Fork 14
/
outputs.tf
69 lines (53 loc) · 1.28 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
# Copyright © 2022-2024, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
output "cluster_name" {
value = local.cluster_name
}
output "jump_admin_username" {
value = "root"
}
output "jump_private_ip" {
value = var.create_jump ? element(module.jump.ip_addresses, 0) : null
}
output "jump_public_ip" {
value = var.create_jump ? element(module.jump.ip_addresses, 0) : null
}
# TODO: Fix this must be a variable
output "jump_rwx_filestore_path" {
value = "/viya-share"
}
output "location" {
value = "local"
}
output "nat_ip" {
value = var.nat_ip
}
output "nfs_admin_username" {
value = "root"
}
output "nfs_private_ip" {
value = var.create_nfs ? element(module.nfs.ip_addresses, 0) : null
}
output "nfs_public_ip" {
value = var.create_nfs ? element(module.nfs.ip_addresses, 0) : null
}
output "prefix" {
value = var.prefix
}
output "provider" {
value = "oss"
}
output "provder_account" {
value = "oss"
}
output "rwx_filestore_endpoint" {
value = var.create_nfs ? element(module.nfs.ip_addresses, 0) : null
}
# TODO: Fix this must be a variable
output "rwx_filestore_path" {
value = "/export"
}
output "postgres_servers" {
value = length(local.postgres_servers) != 0 ? local.postgres_outputs : null
sensitive = true
}