Implemented project data source
This commit is contained in:
parent
6642a66a1d
commit
269963bc8f
4 changed files with 93 additions and 0 deletions
30
docs/data-sources/project.md
Normal file
30
docs/data-sources/project.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
# 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
|
||||
data "project" "main" {
|
||||
name = "main"
|
||||
}
|
||||
```
|
||||
|
||||
<!-- schema generated by tfplugindocs -->
|
||||
## Schema
|
||||
|
||||
### Required
|
||||
|
||||
- `name` (String) The name of the project.
|
||||
|
||||
### Read-Only
|
||||
|
||||
- `id` (String) The identifier of the project.
|
Loading…
Add table
Add a link
Reference in a new issue