Example RBAC roles

Allow all

{
    "version": "2017-05-05",
    "statement": [
        {
            "effect": "allow",
            "action": "*",
            "resource": "*"
        }
    ]
}

Allow UI login

{
    "version": "2017-05-05",
    "statement": [
        {
            "effect": "allow",
            "action": "view:user.login",
            "resource": "*"
        }
    ]
}

Deny credentials

Deny list stacks

Deny list stacks by resource

Deny deleting stacks by resource

Last updated

Was this helpful?