Skip to content

Commit

Permalink
Export FQDN for managed Kubernetes cluster
Browse files Browse the repository at this point in the history
- Set the FQDN for the Kubernetes cluster
- Remove the FQDN from the agent_pool_profile as it's not populated by
Azure for managed Kubernetes
  • Loading branch information
Payam Hekmat committed Feb 28, 2018
1 parent 3a05739 commit 566b179
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions azurerm/resource_arm_kubernetes_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ func resourceArmKubernetesCluster() *schema.Resource {
Computed: true,
},

"fqdn": {
Type: schema.TypeString,
Computed: true,
},

"kubernetes_version": {
Type: schema.TypeString,
Optional: true,
Expand Down Expand Up @@ -95,11 +100,6 @@ func resourceArmKubernetesCluster() *schema.Resource {
Computed: true,
},

"fqdn": {
Type: schema.TypeString,
Computed: true,
},

"vm_size": {
Type: schema.TypeString,
Required: true,
Expand Down Expand Up @@ -243,6 +243,7 @@ func resourceArmKubernetesClusterRead(d *schema.ResourceData, meta interface{})
}
d.Set("resource_group_name", resGroup)
d.Set("dns_prefix", resp.DNSPrefix)
d.Set("fqdn", resp.Fqdn)
d.Set("kubernetes_version", resp.KubernetesVersion)

linuxProfile := flattenAzureRmKubernetesClusterLinuxProfile(*resp.ManagedClusterProperties.LinuxProfile)
Expand Down Expand Up @@ -318,10 +319,6 @@ func flattenAzureRmKubernetesClusterAgentPoolProfiles(profiles *[]containerservi
agentPoolProfile["dns_prefix"] = *profile.DNSPrefix
}

if profile.Fqdn != nil {
agentPoolProfile["fqdn"] = *profile.Fqdn
}

if profile.Name != nil {
agentPoolProfile["name"] = *profile.Name
}
Expand Down

0 comments on commit 566b179

Please sign in to comment.