Skip to main content

system_assigned_identities

Creates, updates, deletes, gets or lists a system_assigned_identities resource.

Overview

Namesystem_assigned_identities
TypeResource
Idazure.managed_identity.system_assigned_identities

Fields

NameDatatypeDescription
client_idtextfield from the properties object
client_secret_urltextfield from the properties object
locationtextThe geo-location where the resource lives
principal_idtextfield from the properties object
scopetextfield from the properties object
tagstextResource tags
tenant_idtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
get_by_scopeSELECTscopeGets the systemAssignedIdentity available under the specified RP scope.

SELECT examples

Gets the systemAssignedIdentity available under the specified RP scope.

SELECT
client_id,
client_secret_url,
location,
principal_id,
scope,
tags,
tenant_id
FROM azure.managed_identity.vw_system_assigned_identities
WHERE scope = '{{ scope }}';