generated from Azure/terraform-azurerm-avm-template
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathoutputs.tf
167 lines (134 loc) · 7.47 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# Authors SHOULD NOT output entire resource objects as these may contain sensitive outputs and the schema can change with API or provider versions
# https://azure.github.io/Azure-Verified-Modules/specs/tf/res/#id-tffr2---category-outputs---additional-terraform-outputs
output "current_kubernetes_version" {
description = "The current version running on the Azure Kubernetes Managed Cluster"
value = azurerm_kubernetes_cluster.this.current_kubernetes_version
}
output "fqdn" {
description = "The FQDN of the Azure Kubernetes Managed Cluster"
value = azurerm_kubernetes_cluster.this.fqdn
}
output "http_application_routing_zone_name" {
description = "The Zone Name of the HTTP Application Routing"
value = azurerm_kubernetes_cluster.this.http_application_routing_zone_name
}
output "identity_principal_id" {
description = "The Principal ID associated with this Managed Service Identity"
value = try(azurerm_kubernetes_cluster.this.identity[0].principal_id, null)
}
output "identity_tenant_id" {
description = "The Tenant ID associated with this Managed Service Identity"
value = try(azurerm_kubernetes_cluster.this.identity[0].tenant_id, null)
}
output "ingress_application_gateway_identity_client_id" {
description = "The Client ID of the user-defined Managed Identity used by the Application Gateway"
value = try(azurerm_kubernetes_cluster.this.ingress_application_gateway[0].ingress_application_gateway_identity[0].client_id, null)
}
output "ingress_application_gateway_identity_object_id" {
description = "The Object ID of the user-defined Managed Identity used by the Application Gateway"
value = try(azurerm_kubernetes_cluster.this.ingress_application_gateway[0].ingress_application_gateway_identity[0].object_id, null)
}
output "ingress_application_gateway_identity_user_assigned_identity_id" {
description = "The ID of the User Assigned Identity used by the Application Gateway"
value = try(azurerm_kubernetes_cluster.this.ingress_application_gateway[0].ingress_application_gateway_identity[0].user_assigned_identity_id, null)
}
output "key_vault_secrets_provider_secret_identity_client_id" {
description = "The Client ID of the user-defined Managed Identity used by the Secret Provider"
value = try(azurerm_kubernetes_cluster.this.key_vault_secrets_provider[0].secret_identity[0].client_id, null)
}
output "key_vault_secrets_provider_secret_identity_object_id" {
description = "The Object ID of the user-defined Managed Identity used by the Secret Provider"
value = azurerm_kubernetes_cluster.this.key_vault_secrets_provider[0].secret_identity[0].object_id
}
output "key_vault_secrets_provider_secret_identity_user_assigned_identity_id" {
description = "The ID of the User Assigned Identity used by the Secret Provider"
value = azurerm_kubernetes_cluster.this.key_vault_secrets_provider[0].secret_identity[0].user_assigned_identity_id
}
output "kube_admin_config" {
description = "The kube_admin_config block for the Azure Kubernetes Managed Cluster"
value = azurerm_kubernetes_cluster.this.kube_admin_config
}
output "kube_admin_config_raw" {
description = "Raw Kubernetes config for the admin account"
value = azurerm_kubernetes_cluster.this.kube_admin_config_raw
}
output "kube_config" {
description = "The kube_config block for the Azure Kubernetes Managed Cluster"
value = azurerm_kubernetes_cluster.this.kube_config
}
output "kube_config_raw" {
description = "Raw Kubernetes config for the user account"
value = azurerm_kubernetes_cluster.this.kube_config_raw
}
output "kubelet_identity_client_id" {
description = "The Client ID of the user-defined Managed Identity assigned to the Kubelets"
value = azurerm_kubernetes_cluster.this.kubelet_identity[0].client_id
}
output "kubelet_identity_object_id" {
description = "The Object ID of the user-defined Managed Identity assigned to the Kubelets"
value = azurerm_kubernetes_cluster.this.kubelet_identity[0].object_id
}
output "kubelet_identity_user_assigned_identity_id" {
description = "The ID of the User Assigned Identity assigned to the Kubelets"
value = azurerm_kubernetes_cluster.this.kubelet_identity[0].user_assigned_identity_id
}
output "load_balancer_profile_effective_outbound_ips" {
description = "The effective outbound IPs for the load balancer profile"
value = try(azurerm_kubernetes_cluster.this.network_profile[0].load_balancer_profile[0].effective_outbound_ips, null)
}
output "nat_gateway_profile_effective_outbound_ips" {
description = "The effective outbound IPs for the NAT Gateway profile"
value = try(azurerm_kubernetes_cluster.this.network_profile[0].nat_gateway_profile[0].effective_outbound_ips, null)
}
output "network_profile" {
description = "The network profile block for the Kubernetes cluster"
value = azurerm_kubernetes_cluster.this.network_profile
}
output "node_resource_group" {
description = "The auto-generated Resource Group containing resources for the Managed Kubernetes Cluster"
value = azurerm_kubernetes_cluster.this.node_resource_group
}
output "node_resource_group_id" {
description = "The ID of the Resource Group containing resources for the Managed Kubernetes Cluster"
value = azurerm_kubernetes_cluster.this.node_resource_group_id
}
output "oidc_issuer_url" {
description = "The OIDC issuer URL that is associated with the cluster"
value = azurerm_kubernetes_cluster.this.oidc_issuer_url
}
output "oms_agent_identity_client_id" {
description = "The Client ID of the user-defined Managed Identity used by the OMS Agents"
value = try(azurerm_kubernetes_cluster.this.oms_agent[0].oms_agent_identity[0].client_id, null)
}
output "oms_agent_identity_object_id" {
description = "The Object ID of the user-defined Managed Identity used by the OMS Agents"
value = try(azurerm_kubernetes_cluster.this.oms_agent[0].oms_agent_identity[0].object_id, null)
}
output "oms_agent_identity_user_assigned_identity_id" {
description = "The ID of the User Assigned Identity used by the OMS Agents"
value = try(azurerm_kubernetes_cluster.this.oms_agent[0].oms_agent_identity[0].user_assigned_identity_id, null)
}
output "portal_fqdn" {
description = "The FQDN for the Azure Portal resources when private link has been enabled"
value = try(azurerm_kubernetes_cluster.this.portal_fqdn, null)
}
output "private_fqdn" {
description = "The FQDN for the Kubernetes Cluster when private link has been enabled"
value = try(azurerm_kubernetes_cluster.this.private_fqdn, null)
}
output "resource_id" {
description = "The Kubernetes Managed Cluster ID."
value = azurerm_kubernetes_cluster.this.id
}
output "web_app_routing_web_app_routing_identity_client_id" {
description = "The Client ID of the user-defined Managed Identity used for Web App Routing"
value = try(azurerm_kubernetes_cluster.this.web_app_routing[0].web_app_routing_identity[0].client_id, null)
}
output "web_app_routing_web_app_routing_identity_object_id" {
description = "The Object ID of the user-defined Managed Identity used for Web App Routing"
value = try(azurerm_kubernetes_cluster.this.web_app_routing[0].web_app_routing_identity[0].object_id, null)
}
output "web_app_routing_web_app_routing_identity_user_assigned_identity_id" {
description = "The ID of the User Assigned Identity used for Web App Routing"
value = try(azurerm_kubernetes_cluster.this.web_app_routing[0].web_app_routing_identity[0].user_assigned_identity_id, null)
}