Compare commits

..

1 Commits

Author SHA1 Message Date
467e0bc42b feat: use INCUS_GLOBAL_CONF value
Some checks failed
Build / build (pull_request) Failing after 1m5s
- set and pass INCUS_GLOBAL_CONF from makefile to terraform
- remove config_dir in all terragrunt.hcl files
2025-10-17 20:22:09 +11:00
129 changed files with 11 additions and 137 deletions

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: |
ls -lh /etc/pki/tls/vault
make plan make plan

View File

@ -15,14 +15,16 @@ 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 && \ export INCUS_CONF=$$INCUS_GLOBAL_CONF && \
mkdir -p $$INCUS_CONFIG_DIR/servercerts && \ trap "rm -rf $$INCUS_GLOBAL_CONF" EXIT && \
printf '%s\n' "$$INCUS_CONF_INCUSIMAGES_CERT" > $$INCUS_CONFIG_DIR/servercerts/incus-images.crt && \ mkdir -p $$INCUS_GLOBAL_CONF && \
printf '%s\n' "$$INCUS_CONF_CONFIG_YAML" > $$INCUS_CONFIG_DIR/config.yaml && \ mkdir -p $$INCUS_GLOBAL_CONF/servercerts && \
printf '%s\n' "$$INCUS_CLIENT_CRT" > $$INCUS_CONFIG_DIR/client.crt && \ printf '%s\n' "$$INCUS_CONF_INCUSIMAGES_CERT" > $$INCUS_GLOBAL_CONF/servercerts/incus-images.crt && \
printf '%s\n' "$$INCUS_CLIENT_KEY" > $$INCUS_CONFIG_DIR/client.key printf '%s\n' "$$INCUS_CONF_CONFIG_YAML" > $$INCUS_GLOBAL_CONF/config.yaml && \
printf '%s\n' "$$INCUS_CLIENT_CRT" > $$INCUS_GLOBAL_CONF/client.crt && \
printf '%s\n' "$$INCUS_CLIENT_KEY" > $$INCUS_GLOBAL_CONF/client.key
endef endef
clean: clean:

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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())}"

View File

@ -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