-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathoutputs.tf
More file actions
36 lines (30 loc) · 855 Bytes
/
outputs.tf
File metadata and controls
36 lines (30 loc) · 855 Bytes
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
output "FSxN_management_ip" {
description = "FSxN Management IP"
value = module.fsxontap.fsx_management_management_ip
}
output "FSxN_svm_iscsi_endpoints" {
description = "FSxN SVM iSCSI endpoints"
value = module.fsxontap.fsx_svm_iscsi_endpoints
}
output "FSxN_sql_server_ip" {
description = "FSxN SQL Serer Private and Public IP addresses"
value = module.sqlserver.ip_address
}
output "FSxN_file_system_id" {
value = module.fsxontap.fsx_file_system.id
}
output "FSxN_svm_id" {
value = module.fsxontap.fsx_svm.id
}
output "FSxN_sql_data_volume" {
value = {
id = module.fsxontap.fsx_sql_data_volume.id
name = module.fsxontap.fsx_sql_data_volume.name
}
}
output "FSxN_sql_log_volume" {
value = {
id = module.fsxontap.fsx_sql_log_volume.id
name = module.fsxontap.fsx_sql_log_volume.name
}
}