-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutput.tf
More file actions
25 lines (24 loc) · 776 Bytes
/
output.tf
File metadata and controls
25 lines (24 loc) · 776 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
output "cbs_azure_deployed_plans" {
value = data.cbs_azure_plans.azure_plans.plans[0]
}
output "cbs_mgmt_endpoint" {
value = cbs_array_azure.azure_instance.management_endpoint
}
output "cbs_mgmt_endpoint_ct0" {
value = cbs_array_azure.azure_instance.management_endpoint_ct0
}
output "cbs_mgmt_endpoint_ct1" {
value = cbs_array_azure.azure_instance.management_endpoint_ct1
}
output "cbs_repl_endpoint_ct0" {
value = cbs_array_azure.azure_instance.replication_endpoint_ct0
}
output "cbs_repl_endpoint_ct1" {
value = cbs_array_azure.azure_instance.replication_endpoint_ct1
}
output "cbs_iscsi_endpoint_ct0" {
value = cbs_array_azure.azure_instance.iscsi_endpoint_ct0
}
output "cbs_iscsi_endpoint_ct1" {
value = cbs_array_azure.azure_instance.iscsi_endpoint_ct1
}