You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # Template file for backup destination configuration and email passwords.
- # Update this file to point to your restic repository and email service.
- # Rename to `secrets.ps1`
-
- # restic backup repository configuration
- $Env:AWS_ACCESS_KEY_ID='<KEY>'
- $Env:AWS_SECRET_ACCESS_KEY='<KEY>'
- $Env:RESTIC_REPOSITORY='<REPO URL>'
- $Env:RESTIC_PASSWORD='<BACKUP PASSWORD>'
-
- # email configuration
- $PSEmailServer='<SMTP SERVER>'
- $ResticEmailConfig=@{UseSsl=$true; Port="587"}
- $ResticEmailTo='<DESTINATION EMAIL ADDRESS>'
- $ResticEmailFrom='<FROM EMAIL ADDRESS>'
- $ResticEmailUsername='<EMAIL LOGIN USERNAME>'
- $ResticEmailPassword='<EMAIL PASSWORD>'
|