Skip to content

Commit

Permalink
resolve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Aris van Ommeren committed Apr 8, 2020
1 parent 3fb8f72 commit 2f1d5d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,31 +122,24 @@ func resourceArmKubernetesCluster() *schema.Resource {

"identity_profile": {
Type: schema.TypeList,
Optional: true,
Computed: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"kubelet_identity": {
Type: schema.TypeList,
Optional: true,
Computed: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"client_id": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"object_id": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
"resource_id": {
"user_assigned_identity_id": {
Type: schema.TypeString,
Optional: true,
Computed: true,
},
},
Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/kubernetes_cluster.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -392,11 +392,11 @@ The `identity_profile` block exports the following:

The `kubelet_identity` block exports the following:

* `client_id` - The client id of the user-defined Managed Identity assigned to the kubelets.
* `client_id` - The Client ID of the user-defined Managed Identity assigned to the Kubelets.

* `object_id` - The object id of the user-defined Managed Identity assigned to the kubelets.
* `object_id` - The Object ID of the user-defined Managed Identity assigned to the Kubelets.

* `resource_id` - The resource id of the user-defined Managed Identity assigned to the kubelets.
* `user_assigned_identity_id` - The ID of the User Assigned Identity assigned to the Kubelets.

---

Expand Down

0 comments on commit 2f1d5d3

Please sign in to comment.