From b718f0f7af50ba126c4c803b1e21cb8a7012ddb4 Mon Sep 17 00:00:00 2001 From: tombuildsstuff Date: Tue, 20 Jun 2017 15:26:05 +0200 Subject: [PATCH] Exposing the FQDN of the master --- azurerm/resource_arm_container_service.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azurerm/resource_arm_container_service.go b/azurerm/resource_arm_container_service.go index da9db3580f68..54b7ed3baa3d 100644 --- a/azurerm/resource_arm_container_service.go +++ b/azurerm/resource_arm_container_service.go @@ -336,10 +336,11 @@ func flattenAzureRmContainerServiceMasterProfile(profile containerservice.Master F: resourceAzureRMContainerServiceMasterProfileHash, } - masterProfile := make(map[string]interface{}, 2) + masterProfile := make(map[string]interface{}, 3) masterProfile["count"] = int(*profile.Count) masterProfile["dns_prefix"] = *profile.DNSPrefix + masterProfile["fqdn"] = *profile.Fqdn masterProfiles.Add(masterProfile)