» yandex_iam_policy
Generates an IAM policy document that may be referenced by and applied to
other Yandex.Cloud Platform resources, such as the yandex_resourcemanager_folder
resource.
data "yandex_iam_policy" "admin" {
binding {
role = "admin"
members = [
"userAccount:user_id_1"
]
}
binding {
role = "viewer"
members = [
"userAccount:user_id_2"
]
}
}
This data source is used to define IAM policies to apply to other resources. Currently, defining a policy through a data source and referencing that policy from another resource is the only way to apply an IAM policy to a resource.
» Argument Reference
The following arguments are supported:
-
binding
(Required) - A nested configuration block (described below) that defines a binding to be included in the policy document. Multiplebinding
arguments are supported.
Each policy document configuration must have one or more binding
blocks. Each block accepts the following arguments:
-
role
(Required) - The role/permission that will be granted to the members. See the IAM Roles documentation for a complete list of roles. -
members
(Required) - An array of identities that will be granted the privilege in therole
. Each entry can have one of the following values:- userAccount:{user_id}: A unique user ID that represents a specific Yandex account.
- serviceAccount:{service_account_id}: A unique service account ID.
» Attributes Reference
The following attribute is exported:
-
policy_data
- The above bindings serialized in a format suitable for referencing from a resource that supports IAM.