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 Jul 30, 2024
1 parent bc149f5 commit 2ab4d8a
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions docs/data-sources/variable_set.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "env0_variable_set Data Source - terraform-provider-env0"
subcategory: ""
description: |-
---

# env0_variable_set (Data Source)



## Example Usage

```terraform
data "env0_project" "project" {
name = "my project name"
}
data "env0_variable_set" "variable_set_project_scope" {
name = "variable set name"
scope = "PROJECT"
project_id = data.env0_project.project.id
}
data "env0_variable_set" "variable_set_organization_scope" {
name = "variable set name"
scope = "ORGANIZATION"
}
```

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

### Required

- `name` (String) the name of the variable set
- `scope` (String) the scope of the variable set. Valid values: 'ORGANIZATION', or 'PROJECT'

### Optional

- `project_id` (String) the id of the 'PROJECT' scope. Is not required for 'ORGANIZATION' scope

### Read-Only

- `id` (String) the id variable set

0 comments on commit 2ab4d8a

Please sign in to comment.