Compare commits

..

1 Commits

Author SHA1 Message Date
ec8985e60a feat: enable access to vault certificate
All checks were successful
Build / build (pull_request) Successful in 1m54s
- puppet now automatically trusts vault certs for some clients
- ensure build job can access vault certs
2025-10-17 22:27:02 +11:00
129 changed files with 137 additions and 11 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 options: "--privileged --volume /etc/pki/tls/vault:/etc/pki/tls/vault:ro"
steps: steps:
- name: Checkout code - name: Checkout code
@ -29,4 +29,5 @@ 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,16 +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_INSECURE_TLS=1 && \ export INCUS_CONFIG_DIR=$$(mktemp -d) && \
export INCUS_GLOBAL_CONF=$$(mktemp -d) && \ trap "rm -rf $$INCUS_CONFIG_DIR" EXIT && \
export INCUS_CONF=$$INCUS_GLOBAL_CONF && \ 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.yaml && \
printf '%s\n' "$$INCUS_CONF_INCUSIMAGES_CERT" > $$INCUS_GLOBAL_CONF/servercerts/incus-images.crt && \ printf '%s\n' "$$INCUS_CLIENT_CRT" > $$INCUS_CONFIG_DIR/client.crt && \
printf '%s\n' "$$INCUS_CONF_CONFIG_YAML" > $$INCUS_GLOBAL_CONF/config.yaml && \ printf '%s\n' "$$INCUS_CLIENT_KEY" > $$INCUS_CONFIG_DIR/client.key
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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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,6 +35,7 @@ generate "incus" {
provider "incus" { provider "incus" {
generate_client_certificates = false generate_client_certificates = false
accept_remote_certificate = 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