Skip to content

Commit

Permalink
chore(docs): rename auth0_email to auth0_email_provider (#865)
Browse files Browse the repository at this point in the history
* chore(docs): rename auth0_email to auth0_email_provider

* chore: run make docs

---------

Co-authored-by: Sergiu Ghitea <28300158+sergiught@users.noreply.github.com>
  • Loading branch information
joelrose and sergiught authored Oct 31, 2023
1 parent 6e62796 commit 2188ecc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/resources/email_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ With Auth0, you can have standard welcome, password reset, and account verificat
## Example Usage

```terraform
resource "auth0_email" "my_email_provider" {
resource "auth0_email_provider" "my_email_provider" {
name = "ses"
enabled = true
default_from_address = "accounts@example.com"
Expand All @@ -24,7 +24,7 @@ resource "auth0_email" "my_email_provider" {
}
resource "auth0_email_template" "my_email_template" {
depends_on = [auth0_email.my_email_provider]
depends_on = [auth0_email_provider.my_email_provider]
template = "welcome_email"
body = "<html><body><h1>Welcome!</h1></body></html>"
Expand Down
4 changes: 2 additions & 2 deletions examples/resources/auth0_email_template/resource.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resource "auth0_email" "my_email_provider" {
resource "auth0_email_provider" "my_email_provider" {
name = "ses"
enabled = true
default_from_address = "accounts@example.com"
Expand All @@ -11,7 +11,7 @@ resource "auth0_email" "my_email_provider" {
}

resource "auth0_email_template" "my_email_template" {
depends_on = [auth0_email.my_email_provider]
depends_on = [auth0_email_provider.my_email_provider]

template = "welcome_email"
body = "<html><body><h1>Welcome!</h1></body></html>"
Expand Down

0 comments on commit 2188ecc

Please sign in to comment.