Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Identity Hub
    • All guides
    • Subscribing a user to notifications
      • Overview
      • Creating an organization
      • Getting organization ID
      • Editing organization data
      • Managing multiple organizations
      • Managing access policies
      • Hiding information about organization members
      • Deleting an organization
      • Connecting a controlled organization
      • Configuring branding
    • Syncing users and groups with Active Directory
    • Billing management in Yandex Identity Hub
  • Access management
  • Pricing policy
  • Terraform reference
  • Audit Trails events
  • Release notes
  • Yandex Identity Hub Sync Agent release notes

In this article:

  • Creating an access policy for an organization
  • Viewing the list of your organization's access policies
  • Deleting an access policy created for an organization
  1. Step-by-step guides
  2. Managing organizations
  3. Managing access policies

Organization access policy management

Written by
Yandex Cloud
Updated at April 3, 2026
  • Creating an access policy for an organization
  • Viewing the list of your organization's access policies
  • Deleting an access policy created for an organization

Note

This feature is in the Preview stage. To get access, contact tech support or your account manager.

Access policies are a Yandex Identity and Access Management mechanism that allows you to manage permissions for specific operations with Yandex Cloud resources. Access policies are based on templates and complement the role system for more flexible access management.

An organization's access policies can be managed by a user with the organization-manager.admin or admin role.

Creating an access policy for an organizationCreating an access policy for an organization

To create an access policy for an organization based on a template without optional parameters:

CLI
API

If you do not have the Yandex Cloud CLI yet, install and initialize it.

  1. Get a list of supported access policy templates with their IDs.

  2. Run this command:

    yc organization-manager organization bind-access-policy \
      --name <organization_name> \
      --access-policy-template-id=<policy_template_ID>
    

    Where:

    • --name: Name of the organization you want to create a policy for. Instead of the organization name, you can provide its ID in the --id parameter.
    • --access-policy-template-id: ID of the template you want to use as the basis for the new access policy for the organization.
  3. Make sure the policy was created.

Use the bindAccessPolicy REST API method for the Organization resource or the OrganizationService/BindAccessPolicy gRPC API call.

The new access policy will apply to resources within all clouds in the specified organization.

Viewing the list of your organization's access policiesViewing the list of your organization's access policies

To view the list of organization access policies:

CLI
API

If you do not have the Yandex Cloud CLI yet, install and initialize it.

Run the command, specifying the name or ID of the organization for which you want to view the created policies:

yc organization-manager organization list-access-policy-bindings <organization_name_or_ID>

Result:

+------------------------------+
|  ACCESS POLICY TEMPLATE ID   |
+------------------------------+
| organization.denyUserListing |
+------------------------------+

Use the listAccessPolicyBindings REST API method for the Organization resource or the OrganizationService/ListAccessPolicyBindings gRPC API call.

Deleting an access policy created for an organizationDeleting an access policy created for an organization

To delete an access policy created for an organization, follow these steps:

CLI
API

If you do not have the Yandex Cloud CLI yet, install and initialize it.

  1. Get a list of IDs of access policy templates assigned for the organization.

  2. Run this command:

    yc organization-manager organization unbind-access-policy \
      --name <organization_name> \
      --access-policy-template-id=<policy_template_ID>
    

    Where:

    • --name: Name of the organization to delete the policy for. Instead of the organization name, you can provide its ID in the --id parameter.
    • --access-policy-template-id: ID of the access policy template you want to delete from the specified organization.
  3. Make sure the policy was deleted.

Use the unbindAccessPolicy REST API method for the Organization resource or the OrganizationService/UnbindAccessPolicy gRPC API call.

The access policy will no longer apply to resources within all clouds in the specified organization.

See alsoSee also

  • Access policies

Was the article helpful?

Previous
Managing multiple organizations
Next
Hiding information about organization members
© 2026 Direct Cursus Technology L.L.C.