Type
This section describes features that are coming in 4.0
The type
condition allows you to constrain a policy statement so that it applies to entities of a specific type. This condition supports regular expressions, allowing you to focus in on a single ID or wildcard expressions within an ID.
Configuration
{
"type": "type",
"config": {
"type": "{type name}"
}
}
Samples
This policy document grants the Consumer role to all Projects.
{
"title": "My Sample Policy",
"statements": [{
"action": "grant",
"roles": ["consumer"],
"conditions": [{
"type": "type",
"config": {
"type": "project"
}
}]
}]
}