From 0a927c1a000f917a983db4ffdd056be850c3018c Mon Sep 17 00:00:00 2001 From: Gleb Koval Date: Thu, 4 Jan 2024 12:13:47 +0000 Subject: [PATCH 1/2] add SMTP_FROM_ADDRESS to infisical --- infra/secrets/infisical/.env | 1 + 1 file changed, 1 insertion(+) diff --git a/infra/secrets/infisical/.env b/infra/secrets/infisical/.env index cd369a5..f91df1f 100644 --- a/infra/secrets/infisical/.env +++ b/infra/secrets/infisical/.env @@ -32,6 +32,7 @@ SMTP_SECURE=true SMTP_USERNAME=no-reply@koval.net SMTP_PASSWORD=SMTP_PASSWORD_VALUE SMTP_FROM_NAME=KovalHome Infisical +SMTP_FROM_ADDRESS=no-reply@koval.net # Integration # Optional only if integration is used -- 2.40.1 From 892baeddc25bed5ba19e66df76f1c8b7bc78441d Mon Sep 17 00:00:00 2001 From: Gleb Koval Date: Thu, 4 Jan 2024 12:18:06 +0000 Subject: [PATCH 2/2] Trigger CI --- infra/secrets/0003_infiscal_playbook.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/infra/secrets/0003_infiscal_playbook.yaml b/infra/secrets/0003_infiscal_playbook.yaml index c1987be..20b4e18 100644 --- a/infra/secrets/0003_infiscal_playbook.yaml +++ b/infra/secrets/0003_infiscal_playbook.yaml @@ -21,6 +21,7 @@ src: "./{{ app }}" dest: "{{ user.home }}" mode: "0744" + - name: Replace Encryption Key secret ansible.builtin.replace: path: "{{ user.home }}/{{ app }}/.env" @@ -41,6 +42,7 @@ path: "{{ user.home }}/{{ app }}/.env" regexp: "SMTP_PASSWORD_VALUE" replace: "{{ lookup('ansible.builtin.env', 'SMTP_PASSWORD') }}" + - name: Docker compose up -d ansible.builtin.command: docker compose up -d args: -- 2.40.1