Author SHA1 Message Date
alessandrovitali 1714c0c7c6 chore: add back record_name var 2026-08-20 13:59:07 +02:00
5 changed files with 7 additions and 48 deletions
-1
View File
@@ -6,4 +6,3 @@
- role: studio.ansible.base - role: studio.ansible.base
- role: studio.ansible.users - role: studio.ansible.users
- role: studio.ansible.security - role: studio.ansible.security
- role: dokploy
-14
View File
@@ -1,14 +0,0 @@
---
# Official Dokploy installer
dokploy_installer_url: "https://dokploy.com/install.sh"
dokploy_installer_path: "/usr/local/bin/dokploy-install.sh"
# Pin to a specific release tag for reproducible installs
dokploy_version: "latest"
# Packages the installer expects on a minimal Debian image
# dokploy_prerequisites:
# - ca-certificates
# - curl
# - openssl
# - iproute2
-33
View File
@@ -1,33 +0,0 @@
---
# - name: Install Dokploy prerequisites
# ansible.builtin.apt:
# name: "{{ dokploy_prerequisites }}"
# state: present
# update_cache: true
- name: Download Dokploy installer
ansible.builtin.get_url:
url: "{{ dokploy_installer_url }}"
dest: "{{ dokploy_installer_path }}"
mode: "0755"
# The upstream installer is not idempotent & exits non-zero if the swarm is already initialized. Guard on the presence of the dokploy swarm service
- name: Check if Dokploy is already installed
ansible.builtin.command: docker service inspect dokploy
register: dokploy_installed
changed_when: false
failed_when: false
- name: Install Dokploy
ansible.builtin.command: "{{ dokploy_installer_path }}"
environment:
DOKPLOY_VERSION: "{{ dokploy_version }}"
changed_when: true
when: dokploy_installed.rc != 0
# - name: Update Dokploy (opt-in)
# ansible.builtin.command: "{{ dokploy_installer_path }} update"
# environment:
# DOKPLOY_VERSION: "{{ dokploy_version }}"
# changed_when: true
# when: dokploy_installed.rc == 0
+1
View File
@@ -4,6 +4,7 @@ hcloud_server_type = "cx23"
hcloud_image = "debian-13" hcloud_image = "debian-13"
hcloud_location = "nbg1" hcloud_location = "nbg1"
record_name = "@"
cloudflare_proxied = true cloudflare_proxied = true
# Note: Use file() to easily read your local SSH public key # Note: Use file() to easily read your local SSH public key
+6
View File
@@ -45,6 +45,12 @@ variable "domain_name" {
description = "Cloudflare zone (apex domain) in which to create the A record" description = "Cloudflare zone (apex domain) in which to create the A record"
} }
variable "record_name" {
type = string
description = "DNS record name relative to the zone; use \"@\" for the apex"
default = "dokploy"
}
variable "cloudflare_proxied" { variable "cloudflare_proxied" {
type = bool type = bool
description = "Whether Cloudflare should proxy (orange-cloud) the A record" description = "Whether Cloudflare should proxy (orange-cloud) the A record"