Alphaus | Documentation
WebsiteRepoTech blog (JP)Tech blog (EN)
ALM v3.0
ALM v3.0
  • What is ALM?
  • Getting started
    • Login for the first time
    • Adding AWS account
    • Adding Azure account
    • Adding Alibaba account
    • Adding GCP account
    • Adding Fujitsu K5 account
  • ALM Template
    • What is ALM Template?
    • Reference (2017-03-03)
    • ALM Template Language
    • Example ALM Templates
  • ALM Agent
    • Overview
    • Getting Started
    • Agent
    • Commands
    • Add-ons
    • Contributing
  • RBAC
    • Overview
    • What is RBAC?
    • Getting started
    • Working with RBAC
    • Release history
    • Example RBAC roles
Powered by GitBook
On this page
  • Allow all
  • Allow UI login
  • Deny credentials
  • Deny list stacks
  • Deny list stacks by resource
  • Deny deleting stacks by resource

Was this helpful?

  1. RBAC

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

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

Deny list stacks

{
    "version": "2017-05-05",
    "statement": [
        {
            "effect": "allow",
            "action": "*",
            "resource": "*"
        },
        {
            "effect": "deny",
            "action": "view:alm.stack",
            "resource": "*"
        }
    ]
}

Deny list stacks by resource

{
    "version": "2017-05-05",
    "statement": [
        {
            "effect": "allow",
            "action": "*",
            "resource": "*"
        },
        {
            "effect": "deny",
            "action": "view:alm.stack",
            "resource": ["mo-590fdb7bad55s-tJZpgRCBs-tk", "mo-590fdb7bad55s-ugMgQQ1TE-tk"]
        }
    ]
}

Deny deleting stacks by resource

{
    "version": "2017-05-05",
    "statement": [
        {
            "effect": "allow",
            "action": "*",
            "resource": "*"
        },
        {
            "effect": "deny",
            "action": "delete:alm.stack",
            "resource": ["mo-590fdb7bad55s-tJZpgRCBs-tk"]
        }
    ]
}
PreviousRelease history

Last updated 6 years ago

Was this helpful?