Skip to main content

customer_managed_policy_references_in_permission_sets

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

Overview

Namecustomer_managed_policy_references_in_permission_sets
TypeResource
Idaws.sso_admin.customer_managed_policy_references_in_permission_sets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the IAM policy that you have configured in each account where you want to deploy your permission set. (pattern: <code>[\w+=,.@-]+</code>)
pathstringThe path to the IAM policy that you have configured in each account where you want to deploy your permission set. The default is /. For more information, see Friendly names and paths in the IAM User Guide. (pattern: <code>((/[A-Za-z0-9.,+@=_-]+)*)/</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_customer_managed_policy_references_in_permission_setselectregionLists all customer managed policies attached to a specified PermissionSet.

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
regionstringAWS region (default: us-east-1)

SELECT examples

Lists all customer managed policies attached to a specified PermissionSet.

SELECT
name,
path
FROM aws.sso_admin.customer_managed_policy_references_in_permission_sets
WHERE region = '{{ region }}' -- required
;