-
Notifications
You must be signed in to change notification settings - Fork 333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding possibility to add SMTP configuration #122
adding possibility to add SMTP configuration #122
Conversation
…rver test data indentation + extra smtpServer update test
All request changes were added + I have updated the branch to latest version of master |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, thanks for the contribution!
@tomrutsaert I just noticed this after merging, but what would you think of handling SMTP auth like this instead? resource "keycloak_realm" "test" {
realm = "test"
smtp_server {
host = "mysmtphost.com"
from = "[email protected]"
auth {
user = "tom"
password = "tom"
}
}
} If you're okay with this, I'll push up a quick fix and cut a release for you within the next few days. |
Seems like a good idea, go ahead |
Adding possibility to add SMTP Server configuration.