Skip to main content

resource_policies

Creates, updates, deletes or gets a resource_policy resource or lists resource_policies in a region

Overview

Nameresource_policies
TypeResource
DescriptionResource Type definition for AWS::CloudTrail::ResourcePolicy
Idaws.cloudtrail.resource_policies

Fields

NameDatatypeDescription
resource_arnstringThe ARN of the AWS CloudTrail resource to which the policy applies.
resource_policyobjectA policy document containing permissions to add to the specified resource. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTResourceArn, ResourcePolicy, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all properties from an individual resource_policy.

SELECT
region,
resource_arn,
resource_policy
FROM aws.cloudtrail.resource_policies
WHERE region = 'us-east-1' AND data__Identifier = '<ResourceArn>';

INSERT example

Use the following StackQL query and manifest file to create a new resource_policy resource, using stack-deploy.

/*+ create */
INSERT INTO aws.cloudtrail.resource_policies (
ResourceArn,
ResourcePolicy,
region
)
SELECT
'{{ ResourceArn }}',
'{{ ResourcePolicy }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.cloudtrail.resource_policies
WHERE data__Identifier = '<ResourceArn>'
AND region = 'us-east-1';

Permissions

To operate on the resource_policies resource, the following permissions are required:

Create

CloudTrail:PutResourcePolicy,
CloudTrail:GetResourcePolicy

Read

CloudTrail:GetResourcePolicy

Update

CloudTrail:PutResourcePolicy,
CloudTrail:GetResourcePolicy

Delete

CloudTrail:DeleteResourcePolicy