system_assigned_identities
Creates, updates, deletes, gets or lists a system_assigned_identities
resource.
Overview
Name | system_assigned_identities |
Type | Resource |
Id | azure.managed_identity.system_assigned_identities |
Fields
The following fields are returned by SELECT
queries:
- get_by_scope
OK. The systemAssignedIdentity was retrieved and returned successfully.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | The properties associated with the identity. (title: System Assigned Identity properties.) |
tags | object | Resource tags |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_by_scope | select | scope | Gets the systemAssignedIdentity available under the specified RP scope. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
scope | string | The resource provider scope of the resource. Parent resource being extended by Managed Identities. |
SELECT
examples
- get_by_scope
Gets the systemAssignedIdentity available under the specified RP scope.
SELECT
location,
properties,
tags
FROM azure.managed_identity.system_assigned_identities
WHERE scope = '{{ scope }}' -- required
;