Compare commits

1 Commits

Author SHA1 Message Date
unkinben 153deee8f4 feat: use INCUS_GLOBAL_CONF value
Build / build (pull_request) Failing after 55s
- set and pass INCUS_GLOBAL_CONF from makefile to terraform
- remove config_dir in all terragrunt.hcl files
2025-10-17 17:17:42 +11:00
152 changed files with 13 additions and 712 deletions
+1 -2
View File
@@ -9,7 +9,7 @@ jobs:
runs-on: almalinux-8 runs-on: almalinux-8
container: container:
image: git.unkin.net/unkin/almalinux9-actionsdind:latest image: git.unkin.net/unkin/almalinux9-actionsdind:latest
options: "--privileged --volume /etc/pki/tls/vault:/etc/pki/tls/vault:ro" options: --privileged
steps: steps:
- name: Checkout code - name: Checkout code
@@ -29,5 +29,4 @@ jobs:
env: env:
VAULT_ROLEID: ${{ secrets.TERRAFORM_INCUS_VAULT_ROLEID }} VAULT_ROLEID: ${{ secrets.TERRAFORM_INCUS_VAULT_ROLEID }}
run: | run: |
dnf install terraform -y
make plan make plan
+1 -2
View File
@@ -11,7 +11,7 @@ jobs:
runs-on: almalinux-8 runs-on: almalinux-8
container: container:
image: git.unkin.net/unkin/almalinux9-actionsdind:latest image: git.unkin.net/unkin/almalinux9-actionsdind:latest
options: "--privileged --volume /etc/pki/tls/vault:/etc/pki/tls/vault:ro" options: --privileged
steps: steps:
- name: Checkout code - name: Checkout code
@@ -23,5 +23,4 @@ jobs:
env: env:
VAULT_ROLEID: ${{ secrets.TERRAFORM_INCUS_VAULT_ROLEID }} VAULT_ROLEID: ${{ secrets.TERRAFORM_INCUS_VAULT_ROLEID }}
run: | run: |
dnf install terraform -y
make apply make apply
+8 -16
View File
@@ -15,22 +15,14 @@ define vault_env
export TG_TF_PATH=terraform && \ export TG_TF_PATH=terraform && \
eval "$$(vault read -format=json kv/data/service/terraform/incus \ eval "$$(vault read -format=json kv/data/service/terraform/incus \
| jq -r '.data.data | to_entries[] | "export \(.key)=\(.value|@sh)"')" && \ | jq -r '.data.data | to_entries[] | "export \(.key)=\(.value|@sh)"')" && \
export INCUS_CONFIG_DIR=$$(mktemp -d) && \ export INCUS_GLOBAL_CONF=$$(mktemp -d) && \
trap "rm -rf $$INCUS_CONFIG_DIR" EXIT && \ trap "rm -rf $$INCUS_GLOBAL_CONF" EXIT && \
mkdir -p $$INCUS_CONFIG_DIR && \ mkdir -p $$INCUS_GLOBAL_CONF && \
mkdir -p $$INCUS_CONFIG_DIR/servercerts && \ mkdir -p $$INCUS_GLOBAL_CONF/servercerts && \
printf '%s\n' "$$INCUS_CONF_INCUSIMAGES_CERT" > $$INCUS_CONFIG_DIR/servercerts/incus-images.crt && \ printf '%s\n' "$$INCUS_CONF_INCUSIMAGES_CERT" > $$INCUS_GLOBAL_CONF/servercerts/incus-images.crt && \
printf '%s\n' "$$INCUS_CONF_CONFIG_YAML" > $$INCUS_CONFIG_DIR/config.yml && \ printf '%s\n' "$$INCUS_CONF_CONFIG_YAML" > $$INCUS_GLOBAL_CONF/config.yaml && \
if [ -f /etc/pki/tls/vault/certificate.crt ] && [ -f /etc/pki/tls/vault/private.key ]; then \ printf '%s\n' "$$INCUS_CLIENT_CRT" > $$INCUS_GLOBAL_CONF/client.crt && \
cp /etc/pki/tls/vault/certificate.crt $$INCUS_CONFIG_DIR/client.crt && \ printf '%s\n' "$$INCUS_CLIENT_KEY" > $$INCUS_GLOBAL_CONF/client.key
cp /etc/pki/tls/vault/private.key $$INCUS_CONFIG_DIR/client.key; \
elif [ -f $$HOME/.config/incus/client.crt ] && [ -f $$HOME/.config/incus/client.key ]; then \
cp $$HOME/.config/incus/client.crt $$INCUS_CONFIG_DIR/client.crt && \
cp $$HOME/.config/incus/client.key $$INCUS_CONFIG_DIR/client.key; \
else \
printf '%s\n' "$$INCUS_CLIENT_CRT" > $$INCUS_CONFIG_DIR/client.crt && \
printf '%s\n' "$$INCUS_CLIENT_KEY" > $$INCUS_CONFIG_DIR/client.key; \
fi
endef endef
clean: clean:
-10
View File
@@ -159,16 +159,6 @@ shared_apps_jellyfin:
properties: properties:
source: /shared/apps/jellyfin source: /shared/apps/jellyfin
path: /shared/apps/jellyfin path: /shared/apps/jellyfin
shared_apps_maildata:
description: "Mount /shared/apps/maildata directly into the container"
project: null
config: {}
devices:
- type: disk
name: maildata-shared
properties:
source: /shared/apps/maildata
path: /shared/apps/maildata
# storage # storage
disk10: disk10:
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
+1 -1
View File
@@ -10,4 +10,4 @@ storage_volumes:
pool: fastpool pool: fastpool
path: /data path: /data
config: config:
size: 100GB size: 50GB
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
+1 -1
View File
@@ -10,4 +10,4 @@ storage_volumes:
pool: fastpool pool: fastpool
path: /data path: /data
config: config:
size: 100GB size: 50GB
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
+1 -1
View File
@@ -10,4 +10,4 @@ storage_volumes:
pool: fastpool pool: fastpool
path: /data path: /data
config: config:
size: 100GB size: 50GB
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"
@@ -35,7 +35,6 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = true accept_remote_certificate = true
config_dir = "${get_env("INCUS_CONFIG_DIR")}"
remote { remote {
name = "${basename(get_terragrunt_dir())}" name = "${basename(get_terragrunt_dir())}"

Some files were not shown because too many files have changed in this diff Show More