Fixed various documentation entries
This commit is contained in:
parent
4f77442eff
commit
6302c173a8
12 changed files with 15 additions and 12 deletions
|
@ -13,7 +13,7 @@ Eventline identities data source
|
|||
## Example Usage
|
||||
|
||||
```terraform
|
||||
data "project" "main" {
|
||||
data "eventline_project" "main" {
|
||||
name = "main"
|
||||
}
|
||||
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
```
|
||||
|
|
|
@ -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" {
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -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>
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue