18 lines
642 B
PowerShell
18 lines
642 B
PowerShell
# 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='sftp:sftpuser@teal:/srv/restic/merganser-backup'
|
|
$Env:RESTIC_PASSWORD='<LambDuck1977>'
|
|
|
|
# email configuration
|
|
$ResticEmailServer='smtp.gmail.com'
|
|
$ResticEmailPort='465'
|
|
$ResticEmailTo='jones.chrisk@gmail.com'
|
|
$ResticEmailFrom='jones.chrisk@gmail.com'
|
|
$ResticEmailUsername='jones.chrisk@gmail.com'
|
|
$ResticEmailPassword='nvooxavrzeskrzlg'
|