Compare commits
1 Commits
master
..
5772e6c611
| Author | SHA1 | Date | |
|---|---|---|---|
| 5772e6c611 |
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -15,22 +15,15 @@ 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_INSECURE_TLS=1 && \
|
||||||
trap "rm -rf $$INCUS_CONFIG_DIR" EXIT && \
|
export INCUS_GLOBAL_CONF=$$(mktemp -d) && \
|
||||||
mkdir -p $$INCUS_CONFIG_DIR && \
|
trap "rm -rf $$INCUS_GLOBAL_CONF" EXIT && \
|
||||||
mkdir -p $$INCUS_CONFIG_DIR/servercerts && \
|
mkdir -p $$INCUS_GLOBAL_CONF && \
|
||||||
printf '%s\n' "$$INCUS_CONF_INCUSIMAGES_CERT" > $$INCUS_CONFIG_DIR/servercerts/incus-images.crt && \
|
mkdir -p $$INCUS_GLOBAL_CONF/servercerts && \
|
||||||
printf '%s\n' "$$INCUS_CONF_CONFIG_YAML" > $$INCUS_CONFIG_DIR/config.yml && \
|
printf '%s\n' "$$INCUS_CONF_INCUSIMAGES_CERT" > $$INCUS_GLOBAL_CONF/servercerts/incus-images.crt && \
|
||||||
if [ -f /etc/pki/tls/vault/certificate.crt ] && [ -f /etc/pki/tls/vault/private.key ]; then \
|
printf '%s\n' "$$INCUS_CONF_CONFIG_YAML" > $$INCUS_GLOBAL_CONF/config.yaml && \
|
||||||
cp /etc/pki/tls/vault/certificate.crt $$INCUS_CONFIG_DIR/client.crt && \
|
printf '%s\n' "$$INCUS_CLIENT_CRT" > $$INCUS_GLOBAL_CONF/client.crt && \
|
||||||
cp /etc/pki/tls/vault/private.key $$INCUS_CONFIG_DIR/client.key; \
|
printf '%s\n' "$$INCUS_CLIENT_KEY" > $$INCUS_GLOBAL_CONF/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:
|
||||||
|
|||||||
@@ -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())}"
|
||||||
|
|||||||
@@ -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())}"
|
||||||
|
|||||||
@@ -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())}"
|
||||||
|
|||||||
@@ -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
Reference in New Issue
Block a user