Skip to content

Commit

Permalink
Add documentation for google_privileged_access_manager_entitlement da…
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurdua authored and varshatumburu committed Oct 19, 2024
1 parent 8caaddf commit e7a086f
Showing 1 changed file with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
subcategory: "Privileged Access Manager"
description: |-
Get information about a Google Cloud Privileged Access Manager Entitlement.
---

# google_privileged_access_manager_entitlement

Use this data source to get information about a Google Cloud Privileged Access Manager Entitlement.

To get more information about Privileged Access Manager, see:

* [API Documentation](https://cloud.google.com/iam/docs/reference/pam/rest)
* How-to guides
* [Official documentation](https://cloud.google.com/iam/docs/pam-overview)

## Example Usage

```hcl
data "google_privileged_access_manager_entitlement" "my-entitlement" {
parent = "projects/my-project"
location = "global"
entitlement_id = "my-entitlement"
}
```

## Argument Reference

The following arguments are supported:

* `parent` - (Required) The project or folder or organization that contains the resource. Format: projects/{project-id|project-number} or folders/{folder-number} or organizations/{organization-number}
* `location` - (Required) The region of the Entitlement resource.
* `entitlement_id` - (Required) ID of the Entitlement resource. This is the last part of the Entitlement's full name which is of the format `{parent}/locations/{location}/entitlements/{entitlement_id}`.

## Attribute Reference

See [google_privileged_access_manager_entitlement](https://registry.terraform.io/providers/hashicorp/google-beta/latest/docs/resources/privileged_access_manager_entitlement#argument-reference) for details of the available attributes.

0 comments on commit e7a086f

Please sign in to comment.