Files
doc-exports/docs/das/umn/das_08_0004.html
wangdengke2 de9f8a7cc5 das_umn
Reviewed-by: Wagner, Fabian <fabian.wagner@t-systems.com>
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: wangdengke2 <wangdengke2@huawei.com>
Co-committed-by: wangdengke2 <wangdengke2@huawei.com>
2025-07-16 11:51:16 +00:00

1.3 KiB

DAS Custom Policies

Custom policies can be created to supplement the system-defined policies of DAS.

There are two ways to create custom policies:

  • Visual editor: Select cloud services, actions, resources, and request conditions. This does not require knowledge of policy syntax.
  • JSON: Edit JSON policies from scratch or based on an existing policy.

. This section describes example custom policies of DAS.

Examples of DAS Custom Policies

Example 1: Assign only DAS permissions.

{
    "Version": "1.1",
    "Statement": [
        {
            "Action": [
                "das:*:*"
            ],
            "Effect": "Allow"
        }
    ]
}