diff options
author | Julien Dessaux | 2023-08-02 00:25:59 +0200 |
---|---|---|
committer | Julien Dessaux | 2023-08-02 00:25:59 +0200 |
commit | c24cf0f443b3f8a94945d84466ff7b1431956734 (patch) | |
tree | b9ef10be532b3097172441a88ab11d9ba7b7583e /docs/data-sources/identities.md | |
parent | Implemented project data source (diff) | |
download | terraform-provider-eventline-c24cf0f443b3f8a94945d84466ff7b1431956734.tar.gz terraform-provider-eventline-c24cf0f443b3f8a94945d84466ff7b1431956734.tar.bz2 terraform-provider-eventline-c24cf0f443b3f8a94945d84466ff7b1431956734.zip |
Added identities and jobs datasource usage examples
Diffstat (limited to '')
-rw-r--r-- | docs/data-sources/identities.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/data-sources/identities.md b/docs/data-sources/identities.md index 57416ff..da4a389 100644 --- a/docs/data-sources/identities.md +++ b/docs/data-sources/identities.md @@ -10,7 +10,17 @@ description: |- 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 |