Fixed various documentation entries

This commit is contained in:
Julien Dessaux 2023-09-24 01:24:42 +02:00
parent 4f77442eff
commit 6302c173a8
Signed by: adyxax
GPG key ID: F92E51B86E07177E
12 changed files with 15 additions and 12 deletions

View file

@ -2,6 +2,9 @@
### Features
* Add identity resource
### Fixes
* Fixed various documentation entries
### Notes
* Upgraded dependencies

View file

@ -13,7 +13,7 @@ Eventline identities data source
## Example Usage
```terraform
data "project" "main" {
data "eventline_project" "main" {
name = "main"
}

View file

@ -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"
}

View file

@ -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"
}
```

View file

@ -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" {
}
```

View file

@ -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>
```

View file

@ -1,4 +1,4 @@
data "project" "main" {
data "eventline_project" "main" {
name = "main"
}

View file

@ -1,4 +1,4 @@
data "project" "main" {
data "eventline_project" "main" {
name = "main"
}

View file

@ -1,3 +1,3 @@
data "project" "main" {
data "eventline_project" "main" {
name = "main"
}

View file

@ -1,2 +1,2 @@
data "projects" "example" {
data "eventline_projects" "example" {
}

View file

@ -1 +1 @@
terraform import eventline_project.test 0123456789ABCDEFGHIJKLMNOPQ
terraform import eventline_project.test <project_id>

View file

@ -1,3 +1,3 @@
resource "project" "example" {
resource "eventline_project" "example" {
name = "example"
}