update to use 1password for secrets
This commit is contained in:
parent
c30d67005b
commit
c0441ab616
4 changed files with 5 additions and 4 deletions
|
@ -2,5 +2,5 @@ taskd.certificate=/home/kellya/.config/task/intheam_certs/private.certificate.pe
|
||||||
taskd.key=/home/kellya/.config/task/intheam_certs/private.key.pem
|
taskd.key=/home/kellya/.config/task/intheam_certs/private.key.pem
|
||||||
taskd.ca=/home/kellya/.config/task/intheam_certs/ca.cert.pem
|
taskd.ca=/home/kellya/.config/task/intheam_certs/ca.cert.pem
|
||||||
taskd.server=inthe.am:53589
|
taskd.server=inthe.am:53589
|
||||||
taskd.credentials=inthe_am/kellya/{{ (index (lastpass "intheam_token") 0).password }}
|
taskd.credentials={{ onepasswordRead "op://Private/intheam_token/password" }}
|
||||||
taskd.trust=strict
|
taskd.trust=strict
|
||||||
|
|
|
@ -2,4 +2,4 @@ taskd.server=app.wingtask.com:53589
|
||||||
taskd.key=/home/kellya/.config/task/wingtask_certs/alex.kelly@arachnitech.com.key.pem
|
taskd.key=/home/kellya/.config/task/wingtask_certs/alex.kelly@arachnitech.com.key.pem
|
||||||
taskd.ca=/home/kellya/.config/task/wingtask_certs/letsencrypt_root_cert.pem
|
taskd.ca=/home/kellya/.config/task/wingtask_certs/letsencrypt_root_cert.pem
|
||||||
taskd.certificate=/home/kellya/.config/task/wingtask_certs/alex.kelly@arachnitech.com.cert.pem
|
taskd.certificate=/home/kellya/.config/task/wingtask_certs/alex.kelly@arachnitech.com.cert.pem
|
||||||
teaskd.credentials=WingTask/alex.kelly@arachnitech.com/{{ (index (lastpass "wingtask_token") 0).password }}
|
teaskd.credentials=WingTask/alex.kelly@arachnitech.com/{{- onepasswordRead "op://Private/wingtask_token/password" -}}
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
[push]
|
[push]
|
||||||
default = simple
|
default = simple
|
||||||
[github]
|
[github]
|
||||||
user = {{ (index (lastpass "github_token") 0).username | quote }}
|
user = {{ onepasswordRead "op://Private/github.com/username" }}
|
||||||
token = {{ (index (lastpass "github_token") 0).password | quote }}
|
token = {{ onepasswordRead "op://Private/github.com/password" }}
|
||||||
[diff]
|
[diff]
|
||||||
tool = meld
|
tool = meld
|
||||||
[difftool]
|
[difftool]
|
||||||
|
|
|
@ -189,3 +189,4 @@ PROG=tea _CLI_ZSH_AUTOCOMPLETE_HACK=1 source /home/kellya/.config/tea/autocomple
|
||||||
export PATH="/home/kellya/.deta/bin:$PATH"
|
export PATH="/home/kellya/.deta/bin:$PATH"
|
||||||
|
|
||||||
eval $(thefuck --alias)
|
eval $(thefuck --alias)
|
||||||
|
eval "$(op completion zsh)"; compdef _op op
|
||||||
|
|
Loading…
Reference in a new issue