2023-08-01 00:32:23 +02:00
|
|
|
---
|
|
|
|
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
|
|
|
page_title: "eventline_project Data Source - terraform-provider-eventline"
|
|
|
|
subcategory: ""
|
|
|
|
description: |-
|
|
|
|
Use this data source to retrieve information about an existing eventline project from its name.
|
|
|
|
---
|
|
|
|
|
|
|
|
# eventline_project (Data Source)
|
|
|
|
|
|
|
|
Use this data source to retrieve information about an existing eventline project from its name.
|
|
|
|
|
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
```terraform
|
2023-09-24 01:24:42 +02:00
|
|
|
data "eventline_project" "main" {
|
2023-08-01 00:32:23 +02:00
|
|
|
name = "main"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
<!-- schema generated by tfplugindocs -->
|
|
|
|
## Schema
|
|
|
|
|
|
|
|
### Required
|
|
|
|
|
|
|
|
- `name` (String) The name of the project.
|
|
|
|
|
|
|
|
### Read-Only
|
|
|
|
|
|
|
|
- `id` (String) The identifier of the project.
|