-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from BESTSELLER/email_config_bug
Email config bug
- Loading branch information
Showing
2 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Resource: harbor_config_system | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "harbor_config_email" "main" { | ||
email_host = "server.acme.com" | ||
email_from = "[email protected]" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
The following arguments are supported: | ||
|
||
* **email_host** - (Required) The FQDN of the email server | ||
* **email_port** - (Optional) The smtp port for the email server `Default: 25` | ||
* **email_username** - (Optional) The username for the email server | ||
* **email_password** - (Optional) The password for the email server | ||
* **email_from** - (Required) - The email from address ie, `[email protected]` | ||
* **email_ssl** - (Optional) Enable SSL for email server connection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters