blob: da4a3899d6c5cf0d3d695060c7d72fab53e77083 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "eventline_identities Data Source - terraform-provider-eventline"
subcategory: ""
description: |-
Eventline identities data source
---
# eventline_identities (Data Source)
Eventline identities data source
## Example Usage
```terraform
data "project" "main" {
name = "main"
}
data "eventline_identities" "example" {
project_id = data.project.main.id
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Required
- `project_id` (String) Project id
### Read-Only
- `elements` (Attributes List) Identities list (see [below for nested schema](#nestedatt--elements))
<a id="nestedatt--elements"></a>
### Nested Schema for `elements`
Read-Only:
- `connector` (String) The connector used for the identity.
- `data` (String, Sensitive) The json raw data of the identity.
- `id` (String) The identifier of the identity.
- `name` (String) The name of the identity.
- `status` (String) The status of the identity.
- `type` (String) The type of the identity.
|