diff options
author | Julien Dessaux | 2023-06-24 14:39:13 +0200 |
---|---|---|
committer | Julien Dessaux | 2023-06-24 17:29:20 +0200 |
commit | 575c4ed22881e9b906346b17fe95c3b358a1c883 (patch) | |
tree | 494d00ef9a31ba73ddb311597e91ffb4ca98dc88 /docs | |
parent | Terraform registry documentation bootstrap (diff) | |
download | terraform-provider-eventline-575c4ed22881e9b906346b17fe95c3b358a1c883.tar.gz terraform-provider-eventline-575c4ed22881e9b906346b17fe95c3b358a1c883.tar.bz2 terraform-provider-eventline-575c4ed22881e9b906346b17fe95c3b358a1c883.zip |
Update projects data source schema to use an extended attributes definition
Diffstat (limited to 'docs')
-rw-r--r-- | docs/data-sources/projects.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/data-sources/projects.md b/docs/data-sources/projects.md index 7642834..306a718 100644 --- a/docs/data-sources/projects.md +++ b/docs/data-sources/projects.md @@ -3,12 +3,12 @@ page_title: "eventline_projects Data Source - terraform-provider-eventline" subcategory: "" description: |- - Eventline projects data source + Use this data source to retrieve information about existing eventline projects. --- # eventline_projects (Data Source) -Eventline projects data source +Use this data source to retrieve information about existing eventline projects. ## Example Usage @@ -22,12 +22,12 @@ data "projects" "example" { ### Read-Only -- `elements` (List of Object) Projects list (see [below for nested schema](#nestedatt--elements)) +- `elements` (Attributes List) The list of projects. (see [below for nested schema](#nestedatt--elements)) <a id="nestedatt--elements"></a> ### Nested Schema for `elements` Read-Only: -- `id` (String) -- `name` (String) +- `id` (String) The identifier of the project. +- `name` (String) The name of the project. |