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
DescriptionRetrieves information about the resource policy. The resource policy is an IAM policy created by AWS RAM on behalf of the resource owner when they share a resource.
Idaws.vpclattice.resource_policies

Fields

NameDatatypeDescription
resource_arnstring
policyobject
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTResourceArn, Policy, 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,
policy
FROM aws.vpclattice.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.vpclattice.resource_policies (
ResourceArn,
Policy,
region
)
SELECT
'{{ ResourceArn }}',
'{{ Policy }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.vpclattice.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

vpc-lattice:GetResourcePolicy,
vpc-lattice:PutResourcePolicy

Read

vpc-lattice:GetResourcePolicy

Update

vpc-lattice:GetResourcePolicy,
vpc-lattice:PutResourcePolicy

Delete

vpc-lattice:GetResourcePolicy,
vpc-lattice:DeleteResourcePolicy