Skip to content

Commit

Permalink
Generate documentation and new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Nabil-Lahssini committed May 25, 2023
1 parent c0ffd83 commit cefec31
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.10
0.2.11
27 changes: 21 additions & 6 deletions docs/data-sources/folder.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,31 @@ description: |-

## Example Usage
```terraform
data "looker_folder" "folder" {
id = "123"
data "looker_folder" "usa_folder" {
id = "1"
}
data "looker_folder" "eu_folder" {
name = "EU"
}
```
## Example Output
```terraform
% terraform show
# data.looker_folder.folder:
data "looker_folder" "folder" {
id = "123"
name = "USA"
# data.looker_folder.usa_folder:
data "looker_folder" "usa_folder" {
id = "1"
name = "USA"
parent_id = "3"
parent_name = "Countries"
}
# data.looker_folder.eu_folder:
data "looker_folder" "eu_folder" {
id = "2"
name = "EU"
parent_id = "3"
parent_name = "Countries"
}
```
<!-- schema generated by tfplugindocs -->
Expand All @@ -32,3 +46,4 @@ data "looker_folder" "folder" {
### Read-Only

- `parent_id` (String) Id of the parent folder.
- `parent_name` (String) Name of the parent folder.
2 changes: 1 addition & 1 deletion docs/resources/user.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resource "looker_user" "user_a" {

### Optional

- `already_exists_ok` (Boolean) Set to true if the user already exists and you want to use it. If user doesn't exist, it will be created.
- `already_exists_ok` (Boolean) Set to true if the user already exists and you want to import it. If user is not found, it will be created.
- `delete_on_destroy` (Boolean) Set to false if you want the user to not be deleted on destroy plan.
- `email` (String)
- `first_name` (String)
Expand Down

0 comments on commit cefec31

Please sign in to comment.