moved fulfillr w/ddns to https

This commit is contained in:
Bastian de Byl
2023-08-11 23:52:56 -04:00
parent 433bbae701
commit 6b459a26f0
7 changed files with 98 additions and 15 deletions

View File

@@ -37,6 +37,7 @@
- "{{ bookstack_server_name }}.https.conf"
- "{{ ci_server_name }}.https.conf"
- "{{ cloud_server_name }}.https.conf"
- "{{ fulfillr_server_name }}.https.conf"
- "{{ parts_server_name }}.https.conf"
- "{{ photos_server_name }}.https.conf"
notify:
@@ -56,6 +57,7 @@
- "{{ bookstack_server_name }}.https.conf"
- "{{ ci_server_name }}.https.conf"
- "{{ cloud_server_name }}.https.conf"
- "{{ fulfillr_server_name }}.https.conf"
- "{{ parts_server_name }}.https.conf"
- "{{ photos_server_name }}.https.conf"
notify:

View File

@@ -52,3 +52,30 @@
include_tasks: podman/systemd-generate.yml
vars:
container_name: awsddns-skudak
- import_tasks: podman/podman-check.yml
vars:
container_name: awsddns-fulfillr
container_image: "{{ image }}"
- name: create fulfillr.debyltech.com awsddns server container
become: true
become_user: "{{ podman_user }}"
diff: false
containers.podman.podman_container:
name: awsddns-fulfillr
image: "{{ image }}"
restart_policy: on-failure:3
log_driver: journald
env:
AWS_ZONE_TTL: 60
AWS_ZONE_ID: "{{ fulfillr_zone_id }}"
AWS_ZONE_HOSTNAME: "{{ fulfillr_server_name }}"
AWS_ACCESS_KEY_ID: "{{ fulfillr_access_key }}"
AWS_SECRET_ACCESS_KEY: "{{ fulfillr_secret_key }}"
AWS_DEFAULT_REGION: "{{ fulfillr_region }}"
- name: create systemd startup job for awsddns-fulfillr
include_tasks: podman/systemd-generate.yml
vars:
container_name: awsddns-fulfillr

View File

@@ -51,7 +51,7 @@
- import_tasks: container-fulfillr.yml
vars:
image: "{{ aws_ecr_endpoint }}/fulfillr:20230811.1904"
image: "{{ aws_ecr_endpoint }}/fulfillr:20230811.2059"
tags: fulfillr
- import_tasks: configuration-nginx.yml