Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
update generated docs action committed Feb 12, 2024
1 parent bc135d1 commit 339692b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/data-sources/module_testing_project.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "env0_module_testing_project Data Source - terraform-provider-env0"
subcategory: ""
description: |-
Can be used to get the projectid for agentprojectassignment and cloudcredentialsprojectassignment
---

# env0_module_testing_project (Data Source)

Can be used to get the project_id for agent_project_assignment and cloud_credentials_project_assignment

## Example Usage

```terraform
data "env0_module_testing_project" "project" {}
data "env0_agents" "agents" {}
resource "env0_agent_project_assignment" "example" {
agent_id = data.env0_agents.agents.0.agent_key
project_id = env0_module_testing_project.project.id
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Read-Only

- `id` (String) the module testing project id
- `name` (String) the module testing project id

0 comments on commit 339692b

Please sign in to comment.