Skip to content

Commit

Permalink
[2/4] Deprecate api_user field in auth0_email resource (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiught authored Nov 7, 2022
1 parent 235e0ca commit 7dc9126
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/resources/email.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Optional:

- `access_key_id` (String, Sensitive) AWS Access Key ID. Used only for AWS.
- `api_key` (String, Sensitive) API Key for your email service. Will always be encrypted in our database.
- `api_user` (String) API User for your email service.
- `api_user` (String, Deprecated) API User for your email service.
- `domain` (String) Domain name.
- `region` (String) Default region. Used only for AWS, Mailgun, and SparkPost.
- `secret_access_key` (String, Sensitive) AWS Secret Key. Will always be encrypted in our database. Used only for AWS.
Expand Down
1 change: 1 addition & 0 deletions internal/provider/resource_auth0_email.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ func newEmail() *schema.Resource {
"api_user": {
Type: schema.TypeString,
Optional: true,
Deprecated: "This field is not accepted by the API any more so it will be removed soon.",
Description: "API User for your email service.",
},
"api_key": {
Expand Down

0 comments on commit 7dc9126

Please sign in to comment.