From baa2ce42c7f501dd994fbda477031f52edf0542c Mon Sep 17 00:00:00 2001 From: Tom Archer Date: Sat, 5 Mar 2022 08:03:57 -0800 Subject: [PATCH] added output of app ip --- .../output.tf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/output.tf b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/output.tf index 509d916b..2638cc91 100644 --- a/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/output.tf +++ b/quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/output.tf @@ -33,4 +33,8 @@ output "identity_resource_id" { output "identity_client_id" { value = azurerm_user_assigned_identity.testIdentity.client_id -} \ No newline at end of file +} + +output "application_ip_address" { + value = azurerm_public_ip.test.ip_address +}