Skip to content

Commit

Permalink
Remove useless things
Browse files Browse the repository at this point in the history
  • Loading branch information
titilambert committed May 28, 2019
1 parent 3dcb2ef commit 9b5cf41
Showing 1 changed file with 0 additions and 9 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 @@ -253,11 +253,6 @@ func dataSourceArmKubernetesCluster() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"admin_password": {
Type: schema.TypeString,
Computed: true,
Sensitive: true,
},
},
},
},
Expand Down Expand Up @@ -651,10 +646,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

0 comments on commit 9b5cf41

Please sign in to comment.