diff options
author | Julien Dessaux | 2023-07-31 00:31:43 +0200 |
---|---|---|
committer | Julien Dessaux | 2023-07-31 00:31:43 +0200 |
commit | 6642a66a1df5db5f2f9780905e83ba2c412128f6 (patch) | |
tree | 35d04ade200db806152bc80cd6cf33ed6bf23052 /docs | |
parent | Upgrade notes (diff) | |
download | terraform-provider-eventline-6642a66a1df5db5f2f9780905e83ba2c412128f6.tar.gz terraform-provider-eventline-6642a66a1df5db5f2f9780905e83ba2c412128f6.tar.bz2 terraform-provider-eventline-6642a66a1df5db5f2f9780905e83ba2c412128f6.zip |
Implemented identities datasourcev0.0.5
Diffstat (limited to 'docs')
-rw-r--r-- | docs/data-sources/identities.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/data-sources/identities.md b/docs/data-sources/identities.md new file mode 100644 index 0000000..57416ff --- /dev/null +++ b/docs/data-sources/identities.md @@ -0,0 +1,36 @@ +--- +# 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 + + + +<!-- 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. |