Skip to content

Commit

Permalink
docs: add password change message templates
Browse files Browse the repository at this point in the history
  • Loading branch information
eliobischof committed Jun 2, 2023
1 parent 1106b7c commit c56b443
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 6 deletions.
17 changes: 14 additions & 3 deletions docs/resources/default_password_change_message_text.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "zitadel_default_password_change_message_text Resource - terraform-provider-zitadel"
subcategory: ""
description: |-
Expand All @@ -10,7 +9,21 @@ description: |-



## Example Usage

```terraform
resource zitadel_default_password_change_message_text password_change_en {
language = "en"
title = "title example"
pre_header = "pre_header example"
subject = "subject example"
greeting = "greeting example"
text = "text example"
button_text = "button_text example"
footer_text = "footer_text example"
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand All @@ -32,5 +45,3 @@ description: |-
### Read-Only

- `id` (String) The ID of this resource.


18 changes: 15 additions & 3 deletions docs/resources/password_change_message_text.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "zitadel_password_change_message_text Resource - terraform-provider-zitadel"
subcategory: ""
description: |-
Expand All @@ -10,7 +9,22 @@ description: |-



## Example Usage

```terraform
resource zitadel_password_change_message_text password_change_en {
org_id = zitadel_org.org.id
language = "en"
title = "title example"
pre_header = "pre_header example"
subject = "subject example"
greeting = "greeting example"
text = "text example"
button_text = "button_text example"
footer_text = "footer_text example"
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand All @@ -33,5 +47,3 @@ description: |-
### Read-Only

- `id` (String) The ID of this resource.


16 changes: 16 additions & 0 deletions templates/resources/default_password_change_message_text.md.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}"
subcategory: ""
description: |-
{{ .Description | plainmarkdown | trimspace | prefixlines " " }}
---

# {{.Name}} ({{.Type}})

{{ .Description | trimspace }}

## Example Usage

{{ tffile "examples/provider/resources/default_password_change_message_text.tf" }}

{{ .SchemaMarkdown | trimspace }}
16 changes: 16 additions & 0 deletions templates/resources/password_change_message_text.md.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}"
subcategory: ""
description: |-
{{ .Description | plainmarkdown | trimspace | prefixlines " " }}
---

# {{.Name}} ({{.Type}})

{{ .Description | trimspace }}

## Example Usage

{{ tffile "examples/provider/resources/password_change_message_text.tf" }}

{{ .SchemaMarkdown | trimspace }}

0 comments on commit c56b443

Please sign in to comment.