Skip to main content

trusted_access_roles

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

Overview

Nametrusted_access_roles
TypeResource
Idazure.aks.trusted_access_roles

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringName of role, name is unique under a source resource type
rulesarrayList of rules for the role. This maps to 'rules' property of Kubernetes Cluster Role.
sourceResourceTypestringResource type of Azure resource

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, location

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.

NameDatatypeDescription
locationstringThe name of the Azure region.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

OK

SELECT
name,
rules,
sourceResourceType
FROM azure.aks.trusted_access_roles
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;