Skip to content

Commit

Permalink
Adding MSI fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Adele Bai authored and anpaz committed Nov 5, 2020
1 parent 4b650cb commit 35c2de7
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
"tags": {
"department": "MightyMight",
"company": "Contoso"
},
"identity": {
"type": "None"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
"tags": {
"department": "MightyMight",
"company": "Contoso"
},
"identity": {
"type": "SystemAssigned",
"principalId": "00000000-1111-2222-3333-444444444444",
"tenantId": "00000000-1111-2222-3333-444444444444"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
"tags": {
"department": "MightyMight",
"company": "Contoso"
},
"identity": {
"type": "SystemAssigned",
"principalId": "00000000-1111-2222-3333-444444444444",
"tenantId": "00000000-1111-2222-3333-444444444444"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
"tags": {
"department": "MightyMight",
"company": "Contoso"
},
"identity": {
"type": "SystemAssigned"
}
}
},
Expand All @@ -47,6 +50,11 @@
"tags": {
"department": "MightyMight",
"company": "Contoso"
},
"identity": {
"type": "SystemAssigned",
"principalId": "00000000-1111-2222-3333-444444444444",
"tenantId": "00000000-1111-2222-3333-444444444444"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@
"tags": {
"department": "MightyMight",
"company": "Contoso"
},
"identity": {
"type": "SystemAssigned",
"principalId": "00000000-1111-2222-3333-444444444444",
"tenantId": "00000000-1111-2222-3333-444444444444"
}
}
},
Expand Down Expand Up @@ -98,6 +103,11 @@
"tags": {
"department": "MightyMight",
"company": "Contoso"
},
"identity": {
"type": "SystemAssigned",
"principalId": "00000000-1111-2222-3333-444444444444",
"tenantId": "00000000-1111-2222-3333-444444444444"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,24 @@
"tags": {
"type": "object",
"description": "Gets or sets the tags."
},
"identity": {
"type": "object",
"description": "Managed Identity information",
"properties": {
"type": {
"type": "string",
"description": "Type of identity. Supported: SystemAssigned or None (case insensitive)"
},
"principalId": {
"type": "string",
"description": "objectId of the managed identity,"
},
"tenantId": {
"type": "string",
"description": "tenantId where the managed identity lives."
}
}
}
},
"x-ms-azure-resource": true
Expand Down

0 comments on commit 35c2de7

Please sign in to comment.