Skip to content

Commit

Permalink
Merge pull request #125 from terraform-providers/containerservice-fqdn
Browse files Browse the repository at this point in the history
Container Service: Exposing the Master's FDQN
  • Loading branch information
tombuildsstuff authored Jun 23, 2017
2 parents e32bd34 + cced2be commit 7761996
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion azurerm/resource_arm_container_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 7761996

Please sign in to comment.