-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathoutputs.tf
More file actions
101 lines (81 loc) · 3.37 KB
/
Copy pathoutputs.tf
File metadata and controls
101 lines (81 loc) · 3.37 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# ---------------------------------------------------------------------------------------------------------------------
# NETWORKING
# ---------------------------------------------------------------------------------------------------------------------
output "resource_group_name" {
description = "Name of the Azure resource group."
value = local.create_networking ? module.networking[0].resource_group_name : data.azurerm_subnet.existing[0].resource_group_name
}
output "vnet_id" {
description = "ID of the virtual network."
value = local.create_networking ? module.networking[0].vnet_id : null
}
output "vnet_name" {
description = "Name of the virtual network."
value = local.create_networking ? module.networking[0].vnet_name : null
}
# ---------------------------------------------------------------------------------------------------------------------
# AKS
# ---------------------------------------------------------------------------------------------------------------------
output "aks_cluster_id" {
description = "ID of the AKS cluster."
value = module.aks.cluster_id
}
output "aks_cluster_name" {
description = "Name of the AKS cluster."
value = module.aks.cluster_name
}
output "aks_cluster_fqdn" {
description = "Private FQDN of the AKS cluster."
value = module.aks.cluster_fqdn
}
output "aks_oidc_issuer_url" {
description = "OIDC issuer URL of the AKS cluster."
value = module.aks.oidc_issuer_url
}
output "kube_config" {
description = "Kubeconfig for the AKS cluster."
value = module.aks.kube_config
sensitive = true
}
# ---------------------------------------------------------------------------------------------------------------------
# CONFLUENT PLATFORM
# ---------------------------------------------------------------------------------------------------------------------
output "confluent_namespace" {
description = "Kubernetes namespace where Confluent Platform is deployed."
value = module.security.confluent_namespace
}
output "kafka_bootstrap_endpoint" {
description = "Internal Kafka bootstrap endpoint."
value = module.confluent_platform.kafka_bootstrap_endpoint
}
output "schema_registry_endpoint" {
description = "Internal Schema Registry endpoint."
value = module.confluent_platform.schema_registry_endpoint
}
output "connect_endpoint" {
description = "Internal Kafka Connect endpoint."
value = module.confluent_platform.connect_endpoint
}
output "ksqldb_endpoint" {
description = "Internal ksqlDB endpoint."
value = module.confluent_platform.ksqldb_endpoint
}
output "control_center_endpoint" {
description = "Internal Control Center endpoint."
value = module.confluent_platform.control_center_endpoint
}
output "kafka_rest_proxy_endpoint" {
description = "Internal Kafka REST Proxy endpoint."
value = module.confluent_platform.kafka_rest_proxy_endpoint
}
# ---------------------------------------------------------------------------------------------------------------------
# SECURITY
# ---------------------------------------------------------------------------------------------------------------------
output "key_vault_id" {
description = "ID of the Azure Key Vault."
value = module.security.key_vault_id
}
output "key_vault_uri" {
description = "URI of the Azure Key Vault."
value = module.security.key_vault_uri
}