You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Terraform Version
v0.11.13
Affected Resource(s)
auth0_email_template
Terraform Configuration Files
provider"auth0" {
domain="${var.auth0_domain}"client_id="${var.auth0_client_id}"client_secret="${var.auth0_client_secret}"version="~> 0.1.18"
}
variable"auth0_from_email_address" {
type="string"
}
resource"auth0_email_template""verify_email" {
template="verify_email"body="${file("./build/verify_email.html")}"from="${var.auth0_from_email_address}"subject="Please verify your email address"result_url=""syntax="liquid"url_lifetime_in_seconds=432000enabled=true
}
resource"auth0_email_template""welcome_email" {
template="welcome_email"body="${file("./build/welcome_email.html")}"from="${var.auth0_from_email_address}"subject="Welcome to New Company!"result_url=""syntax="liquid"url_lifetime_in_seconds=0enabled=true
}
resource"auth0_email_template""blocked_account" {
template="blocked_account"body="${file("./build/blocked_account.html")}"from="${var.auth0_from_email_address}"subject="Your New Company account has been blocked"result_url=""syntax="liquid"url_lifetime_in_seconds=432000enabled=true
}
resource"auth0_email_template""stolen_credentials" {
template="stolen_credentials"body="${file("./build/stolen_credentials.html")}"from="${var.auth0_from_email_address}"subject="Your account credentials have been stolen"result_url=""syntax="liquid"url_lifetime_in_seconds=0enabled=true
}
resource"auth0_email_template""enrollment_email" {
template="enrollment_email"body="${file("./build/enrollment_email.html")}"from="${var.auth0_from_email_address}"subject="Enroll in New Company MFA"result_url=""syntax="liquid"url_lifetime_in_seconds=0enabled=true
}
resource"auth0_email_template""reset_email" {
template="reset_email"body="${file("./build/reset_email.html")}"from="${var.auth0_from_email_address}"subject="Change your New Company password"result_url=""syntax="liquid"url_lifetime_in_seconds=432000enabled=true
}
resource"auth0_email_template""mfa_oob_code" {
template="mfa_oob_code"body="${file("./build/mfa_oob_code.html")}"from="${var.auth0_from_email_address}"subject="Your New Company MFA code"result_url=""syntax="liquid"url_lifetime_in_seconds=0enabled=true
}
auth0_email_template resource should update upon running terraform apply.
Actual Behavior
auth0_email_template resource are able to be created when running terraform apply for the first time. One the second tf apply, 404 error messages are returned.
Steps to Reproduce
terraform apply to create the initial email template
Make a change to the resource. Example: change the subject
Run terraform apply again to attempt to update
The text was updated successfully, but these errors were encountered:
This issue is stale because it has been open 30 days with no activity.
Stale issues will be closed after 5 days if no action is taken. If you
think this issue should not be closed, remove the stale label.
Community Note
Terraform Version
v0.11.13
Affected Resource(s)
Terraform Configuration Files
Debug Output
Gist containing the output of
tf plan
(which succeeds) andtf apply
(which fails)https://gist.github.com/kevinohara80/a717f67f3c49ba2ffbb2da9b53bc24ed
Expected Behavior
auth0_email_template
resource should update upon running terraform apply.Actual Behavior
auth0_email_template
resource are able to be created when runningterraform apply
for the first time. One the secondtf apply
, 404 error messages are returned.Steps to Reproduce
terraform apply
to create the initial email templateterraform apply
again to attempt to updateThe text was updated successfully, but these errors were encountered: