-
Notifications
You must be signed in to change notification settings - Fork 2
/
outputs.tf
39 lines (32 loc) · 886 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
output "FSxN_Management_IP" {
description = "FSxN Management IP"
value = module.fsxontap.fsxn_management_management_ip
}
output "MicrosoftAD_Server_Private_IP" {
description = "FSxN SQL Serer Private and Public IP addresses"
value = module.ec2-ad.ip_address.private_ip
}
output "FSxN_File_System_ID" {
value = module.fsxontap.fsxn_file_system.id
}
output "FSxN_SVM_ID" {
value = module.fsxontap.fsxn_svm.id
}
output "FSxN_SVM_SMB_Endpoint" {
value = module.fsxontap.fsxn_svm.endpoints[0].smb[0]
}
output "FSxN_SVM_NFS_Endpoint" {
value = module.fsxontap.fsxn_svm.endpoints[0].nfs[0]
}
output "FSxN_Volume_1" {
value = {
id = module.fsxontap.fsxn_volume_1.id
name = module.fsxontap.fsxn_volume_1.name
}
}
output "FSxN_Volume_2" {
value = {
id = module.fsxontap.fsxn_volume_2.id
name = module.fsxontap.fsxn_volume_2.name
}
}