|
| 1 | +--- |
| 2 | +page_title: "Data Source: okta_entitlement_bundle" |
| 3 | +description: |- |
| 4 | + Gets the full representation of a entitlement bundle. |
| 5 | +--- |
| 6 | + |
| 7 | +# Data Source: okta_entitlement |
| 8 | + |
| 9 | +Get the entitlement bundle for the given id. |
| 10 | + |
| 11 | +## Example Usage |
| 12 | + |
| 13 | +```terraform |
| 14 | +data "okta_entitlement_bundle" "test" { |
| 15 | + id = "<entitlement_bundle id>" |
| 16 | +} |
| 17 | +``` |
| 18 | + |
| 19 | +<!-- schema generated by tfplugindocs --> |
| 20 | +## Schema |
| 21 | + |
| 22 | +### Required |
| 23 | +- `id` (String) The ID of this resource. |
| 24 | + |
| 25 | +### Read-Only |
| 26 | +- `name` (String) The display name for an entitlement bundle. |
| 27 | +- `description` (String) The description of an entitlement property. |
| 28 | +- `target_resource_orn` (String) The ORN of the target resource. Required when updating the entitlement bundle. |
| 29 | +- `status` (String) The status of the entitlement bundle. |
| 30 | +- `target` (Object) Representation of a resource (see [below for nested schema](#nestedatt--target)) |
| 31 | +- `entitlements` (Array) List of entitlements in the bundle (see [below for nested schema](#nestedatt--entitlements)) |
| 32 | +- `created` (String) The created timestamp of this resource. |
| 33 | +- `last_updated` (String) The last updated timestamp of this resource. |
| 34 | +- `created_by` (String) The ID of the user that created this resource. |
| 35 | +- `last_updated_by` (String) The ID of the user that last updated this resource. |
| 36 | + |
| 37 | + |
| 38 | +<a id="nestedatt--brands"></a> |
| 39 | +### Nested Schema for `entitlement` |
| 40 | + |
| 41 | +### Read-Only |
| 42 | + |
| 43 | +- `id` (String) The id property of an entitlement. |
| 44 | +- `data_type` (String) The data type of the entitlement property. |
| 45 | +- `description` (String) The description of an entitlement property. |
| 46 | +- `external_value` (String) The value of an entitlement property. |
| 47 | +- `multi_value` (Boolean) The property that determines if the entitlement property can hold multiple values. |
| 48 | +- `name` (String) The display name for an entitlement property. |
| 49 | +- `required` (Boolean) The property that determines if the entitlement property is a required attribute. |
| 50 | +- `values`(Array) (see [below for nested schema](#nestedblock----values)) |
| 51 | + |
| 52 | +<a id="nestedblock--values"></a> |
| 53 | +### Nested Schema for `values` |
| 54 | +Read-Only: |
| 55 | +- `id` (String) The id of an entitlement value. |
| 56 | +- `name` (String) The display name for an entitlement value. |
| 57 | +- `description` (String) The description of an entitlement value. |
| 58 | +- `external_id` (String) The ID of an entitlement property value in the downstream application. |
| 59 | +- `external_value` (String) The value of an entitlement property value. |
0 commit comments