-
Notifications
You must be signed in to change notification settings - Fork 3
/
outputs.tf
46 lines (37 loc) · 1.01 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
output "rgName" {
value = "${azurerm_resource_group.genericRG.name}"
}
output "storageAccountName" {
value = "${azurerm_storage_account.genericSA.name}"
}
output "storageAccountConnectionString" {
value = "${azurerm_storage_account.genericSA.primary_connection_string}"
}
output "containerName" {
value = "${azurerm_storage_container.container.name}"
}
output "edgeNode" {
value = "${lookup(azurerm_template_deployment.edgeNode.outputs, "applicationName")}"
}
/*
output "edge_ssh_endpoint" {
value = "${azurerm_hdinsight_kafka_cluster.cluster.edge_ssh_endpoint}"
}*/
output "https_endpoint" {
value = "${azurerm_hdinsight_kafka_cluster.cluster.https_endpoint}"
}
output "ssh_endpoint" {
value = "${azurerm_hdinsight_kafka_cluster.cluster.ssh_endpoint}"
}
output "subnets" {
value = {
for subnet in azurerm_subnet.subnets :
subnet.name => subnet.address_prefix
}
}
output "dataBricksSubnets" {
value = {
for subnet in azurerm_subnet.dbSubnets :
subnet.name => subnet.address_prefix
}
}