Skip to content

Commit

Permalink
Remove useless things
Browse files Browse the repository at this point in the history
  • Loading branch information
titilambert committed Jun 17, 2019
1 parent bab545e commit bc6f898
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
9 changes: 0 additions & 9 deletions azurerm/data_source_kubernetes_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,11 +254,6 @@ func dataSourceArmKubernetesCluster() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"admin_password": {
Type: schema.TypeString,
Computed: true,
Sensitive: true,
},
},
},
},
Expand Down Expand Up @@ -652,10 +647,6 @@ func flattenKubernetesClusterDataSourceWindowsProfile(input *containerservice.Ma
if username := profile.AdminUsername; username != nil {
values["admin_username"] = *username
}

if password := profile.AdminPassword; password != nil {
values["admin_password"] = *password
}
}

return []interface{}{values}
Expand Down
2 changes: 0 additions & 2 deletions website/docs/d/kubernetes_cluster.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,6 @@ A `windows_profile` block exports the following:

* `admin_username` - The username associated with the administrator account of the Windows VMs.

* `admin_password` - The password associated with the administrator account of the Windows VMs.

---

A `network_profile` block exports the following:
Expand Down

0 comments on commit bc6f898

Please sign in to comment.