Allows management of Organization policies for a Google Project. For more information see the official documentation
data "google_project_organization_policy" "policy" {
project = "project-id"
constraint = "constraints/serviceuser.services"
}
output "version" {
value = data.google_project_organization_policy.policy.version
}
The following arguments are supported:
project
- (Required) The project ID.
constraint
- (Required) (Required) The name of the Constraint the Policy is configuring, for example, serviceuser.services
. Check out the complete list of available constraints.
See google_project_organization_policy resource for details of the available attributes.