Skip to main content

Tigris IAM Policy Support

An IAM (Identity and Access Management) policy is a set of rules that define permissions, specifying what actions can be performed on specific resources optionally with some conditions. IAM policy is very broad and in context of Tigris we support the following blocks:

BlockSupportedDescription
VersionYesSpecifies the version of the policy language. The supported version is 2012-10-17
IdYesAn optional identifier of the policy.
StatementYesAn array of one or more statements that define the permissions.
statement.sid_blockYesAn optional identifier for the statement.
statement.effectYesSpecifies whether the action is allowed or denied.
statement.actionYesSpecifies the action that is allowed. Note that here Tigris supports format s3:MethodName, For example: s3:PutBucket. Tigris supports wildcard (*) and prefixes (eg: s3:Put*) here.
statement.resourceYesSpecifies the Amazon Resource Name (ARN) of the resource to which the policy applies. Tigris supports wildcard (*) and prefixes for object (eg: arn:aws:s3:::my-bucket/images/*).
statement.conditionPartiallyTigris supports IpAddress, NotIpAddress, DateEquals, DateNotEquals, DateGreaterThan, DateGreaterThanEquals, DateLessThan, DateLessThanEquals condition.

Note that for date-time conditions - only supported variable is aws:CurrentTime which represents the current time when server is processing the request.