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
- vw_system_assigned_identities
- system_assigned_identities
Name | Datatype | Description |
---|---|---|
client_id | text | field from the properties object |
client_secret_url | text | field from the properties object |
location | text | The geo-location where the resource lives |
principal_id | text | field from the properties object |
scope | text | field from the properties object |
tags | text | Resource tags |
tenant_id | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | The properties associated with the system assigned identity. |
tags | object | Resource tags |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get_by_scope | SELECT | scope | Gets the systemAssignedIdentity available under the specified RP scope. |
SELECT
examples
Gets the systemAssignedIdentity available under the specified RP scope.
- vw_system_assigned_identities
- system_assigned_identities
SELECT
client_id,
client_secret_url,
location,
principal_id,
scope,
tags,
tenant_id
FROM azure.managed_identity.vw_system_assigned_identities
WHERE scope = '{{ scope }}';
SELECT
location,
properties,
tags
FROM azure.managed_identity.system_assigned_identities
WHERE scope = '{{ scope }}';