Skip to content

Commit

Permalink
docs: generate docs for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
stebenz committed Jan 16, 2024
1 parent b448706 commit a81d553
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions docs/data-sources/application_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Datasource representing an API application belonging to a project, with all conf

```terraform
data "zitadel_application_api" "default" {
org_id = "345678901234567890"
project_id = "234567890123456789"
org_id = data.zitadel_org.default.id
project_id = data.zitadel_project.default.id
app_id = "123456789012345678"
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/data-sources/application_apis.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Datasource representing an API application belonging to a project, with all conf

```terraform
data "zitadel_application_apis" "default" {
org_id = "123456789012345678"
project_id = "234567890123456789"
org_id = data.zitadel_org.default.id
project_id = data.zitadel_project.default.id
name = "example-name"
name_method = "TEXT_QUERY_METHOD_CONTAINS_IGNORE_CASE"
}
Expand Down
4 changes: 2 additions & 2 deletions docs/data-sources/application_oidc.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Datasource representing an OIDC application belonging to a project, with all con

```terraform
data "zitadel_application_oidc" "default" {
org_id = "345678901234567890"
project_id = "234567890123456789"
org_id = data.zitadel_org.default.id
project_id = data.zitadel_project.default.id
app_id = "123456789012345678"
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/data-sources/application_oidcs.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Datasource representing an OIDC application belonging to a project, with all con

```terraform
data "zitadel_application_oidcs" "default" {
org_id = "123456789012345678"
project_id = "234567890123456789"
org_id = data.zitadel_org.default.id
project_id = data.zitadel_project.default.id
name = "example-name"
name_method = "TEXT_QUERY_METHOD_CONTAINS_IGNORE_CASE"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/machine_user.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Datasource representing a serviceaccount situated under an organization, which t

```terraform
data "zitadel_machine_user" "default" {
org_id = "234567890123456789"
org_id = data.zitadel_org.default.id
user_id = "123456789012345678"
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/machine_users.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Datasource representing a serviceaccount situated under an organization, which t

```terraform
data "zitadel_machine_users" "default" {
org_id = "123456789012345678"
org_id = data.zitadel_org.default.id
user_name = "example-name"
user_name_method = "TEXT_QUERY_METHOD_CONTAINS_IGNORE_CASE"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/project.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Datasource representing the project, which can then be granted to different orga

```terraform
data "zitadel_project" "default" {
org_id = "234567890123456789"
org_id = data.zitadel_org.default.id
project_id = "123456789012345678"
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/projects.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Datasource representing the project, which can then be granted to different orga

```terraform
data "zitadel_projects" "default" {
org_id = "123456789012345678"
org_id = data.zitadel_org.default.id
name = "example-name"
name_method = "TEXT_QUERY_METHOD_CONTAINS_IGNORE_CASE"
}
Expand Down

0 comments on commit a81d553

Please sign in to comment.