summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJulien Dessaux2023-09-24 01:24:42 +0200
committerJulien Dessaux2023-09-24 01:24:42 +0200
commit6302c173a83dbec5b43ce4fe036dafc7c5cbde41 (patch)
tree2e6b58cb36de24d1823c2f1c259116864b989526 /docs
parentAdd identity resource (diff)
downloadterraform-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')
-rw-r--r--docs/data-sources/identities.md2
-rw-r--r--docs/data-sources/jobs.md2
-rw-r--r--docs/data-sources/project.md2
-rw-r--r--docs/data-sources/projects.md2
-rw-r--r--docs/resources/project.md4
5 files changed, 6 insertions, 6 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" {
}
```
diff --git a/docs/resources/project.md b/docs/resources/project.md
index ac1953d..c2f1377 100644
--- a/docs/resources/project.md
+++ b/docs/resources/project.md
@@ -13,7 +13,7 @@ Eventline project resource
## Example Usage
```terraform
-resource "project" "example" {
+resource "eventline_project" "example" {
name = "example"
}
```
@@ -34,5 +34,5 @@ resource "project" "example" {
Import is supported using the following syntax:
```shell
-terraform import eventline_project.test 0123456789ABCDEFGHIJKLMNOPQ
+terraform import eventline_project.test <project_id>
```