diff options
author | Julien Dessaux | 2023-09-24 01:24:42 +0200 |
---|---|---|
committer | Julien Dessaux | 2023-09-24 01:24:42 +0200 |
commit | 6302c173a83dbec5b43ce4fe036dafc7c5cbde41 (patch) | |
tree | 2e6b58cb36de24d1823c2f1c259116864b989526 /docs/data-sources | |
parent | Add identity resource (diff) | |
download | terraform-provider-eventline-6302c173a83dbec5b43ce4fe036dafc7c5cbde41.tar.gz terraform-provider-eventline-6302c173a83dbec5b43ce4fe036dafc7c5cbde41.tar.bz2 terraform-provider-eventline-6302c173a83dbec5b43ce4fe036dafc7c5cbde41.zip |
Fixed various documentation entriesv0.1.0
Diffstat (limited to 'docs/data-sources')
-rw-r--r-- | docs/data-sources/identities.md | 2 | ||||
-rw-r--r-- | docs/data-sources/jobs.md | 2 | ||||
-rw-r--r-- | docs/data-sources/project.md | 2 | ||||
-rw-r--r-- | docs/data-sources/projects.md | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/data-sources/identities.md b/docs/data-sources/identities.md index da4a389..d9764f2 100644 --- a/docs/data-sources/identities.md +++ b/docs/data-sources/identities.md @@ -13,7 +13,7 @@ Eventline identities data source ## Example Usage ```terraform -data "project" "main" { +data "eventline_project" "main" { name = "main" } diff --git a/docs/data-sources/jobs.md b/docs/data-sources/jobs.md index ce886fd..e993311 100644 --- a/docs/data-sources/jobs.md +++ b/docs/data-sources/jobs.md @@ -13,7 +13,7 @@ Use this data source to retrieve information about existing eventline jobs. ## Example Usage ```terraform -data "project" "main" { +data "eventline_project" "main" { name = "main" } diff --git a/docs/data-sources/project.md b/docs/data-sources/project.md index bf0f077..2fa0438 100644 --- a/docs/data-sources/project.md +++ b/docs/data-sources/project.md @@ -13,7 +13,7 @@ Use this data source to retrieve information about an existing eventline project ## Example Usage ```terraform -data "project" "main" { +data "eventline_project" "main" { name = "main" } ``` diff --git a/docs/data-sources/projects.md b/docs/data-sources/projects.md index 306a718..8141235 100644 --- a/docs/data-sources/projects.md +++ b/docs/data-sources/projects.md @@ -13,7 +13,7 @@ Use this data source to retrieve information about existing eventline projects. ## Example Usage ```terraform -data "projects" "example" { +data "eventline_projects" "example" { } ``` |