diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..db8ab15 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,32 @@ +--- +name: Build + +on: + pull_request: + +jobs: + build: + runs-on: almalinux-8 + container: + image: git.unkin.net/unkin/almalinux9-actionsdind:latest + options: --privileged + + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Fetch master branch + run: | + git fetch origin master:master + + - name: Show changed files + run: | + git diff --name-only master + + - name: Run Terraform Plan + env: + VAULT_ROLEID: ${{ secrets.TERRAFORM_INCUS_VAULT_ROLEID }} + run: | + make plan diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..c161dae --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,34 @@ +--- +name: Deploy + +on: + push: + branches: + - master + +jobs: + build: + runs-on: almalinux-8 + container: + image: git.unkin.net/unkin/almalinux9-actionsdind:latest + options: --privileged + + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Fetch master branch + run: | + git fetch origin master:master + + - name: Show changed files + run: | + git diff --name-only master + + - name: Run Terraform Apply + env: + VAULT_ROLEID: ${{ secrets.TERRAFORM_INCUS_VAULT_ROLEID }} + run: | + make apply diff --git a/Makefile b/Makefile index e42187b..831239d 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,15 @@ define vault_env export PUPPET_CERT_PUB=$$(vault kv get -field=public_key kv/service/puppet/certificates/terraform) && \ export PUPPET_CERT_PRIV=$$(vault kv get -field=private_key kv/service/puppet/certificates/terraform) && \ export TG_QUEUE_EXCLUDE_DIR="templates/base" && \ - export $$(vault read -format=json kv/data/service/terraform/incus | jq -r '.data.data | to_entries[] | "\(.key)=\(.value)"') + export TG_PROVIDER_CACHE=1 && \ + export TG_TF_PATH=terraform && \ + eval "$$(vault read -format=json kv/data/service/terraform/incus \ + | jq -r '.data.data | to_entries[] | "export \(.key)=\(.value|@sh)"')" && \ + export INCUS_CONF=$$(mktemp -d) && \ + trap "rm -rf $$INCUS_CONF" EXIT && \ + mkdir -p $$INCUS_CONF && \ + printf '%s\n' "$$INCUS_CLIENT_CRT" > $$INCUS_CONF/client.crt && \ + printf '%s\n' "$$INCUS_CLIENT_KEY" > $$INCUS_CONF/client.key endef clean: @@ -29,7 +37,7 @@ plan: init @$(call vault_env) && \ terragrunt run --all --parallelism 8 --non-interactive plan -apply: +apply: init @$(call vault_env) && \ terragrunt run --all --parallelism 5 --non-interactive apply diff --git a/config/instances/ausyd1nxvm2000/terragrunt.hcl b/config/instances/ausyd1nxvm2000/terragrunt.hcl index 1b18bba..244d8ec 100644 --- a/config/instances/ausyd1nxvm2000/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2000/terragrunt.hcl @@ -27,20 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" - #before_hook "load_node_Venv" { - # commands = ["apply", "plan", "destroy", "init"] - # execute = ["bash", "-c", "../../../../../../ci/set_node_env.sh"] - #} -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -54,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2001/terragrunt.hcl b/config/instances/ausyd1nxvm2001/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2001/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2001/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2002/terragrunt.hcl b/config/instances/ausyd1nxvm2002/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2002/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2002/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2003/terragrunt.hcl b/config/instances/ausyd1nxvm2003/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2003/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2003/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2004/terragrunt.hcl b/config/instances/ausyd1nxvm2004/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2004/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2004/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2005/terragrunt.hcl b/config/instances/ausyd1nxvm2005/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2005/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2005/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2006/terragrunt.hcl b/config/instances/ausyd1nxvm2006/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2006/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2006/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2007/terragrunt.hcl b/config/instances/ausyd1nxvm2007/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2007/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2007/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2008/terragrunt.hcl b/config/instances/ausyd1nxvm2008/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2008/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2008/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2009/terragrunt.hcl b/config/instances/ausyd1nxvm2009/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2009/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2009/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2010/terragrunt.hcl b/config/instances/ausyd1nxvm2010/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2010/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2010/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2011/terragrunt.hcl b/config/instances/ausyd1nxvm2011/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2011/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2011/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2012/terragrunt.hcl b/config/instances/ausyd1nxvm2012/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2012/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2012/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2013/terragrunt.hcl b/config/instances/ausyd1nxvm2013/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2013/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2013/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2014/terragrunt.hcl b/config/instances/ausyd1nxvm2014/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2014/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2014/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2015/terragrunt.hcl b/config/instances/ausyd1nxvm2015/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2015/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2015/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2016/terragrunt.hcl b/config/instances/ausyd1nxvm2016/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2016/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2016/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2017/terragrunt.hcl b/config/instances/ausyd1nxvm2017/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2017/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2017/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2018/terragrunt.hcl b/config/instances/ausyd1nxvm2018/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2018/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2018/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2019/terragrunt.hcl b/config/instances/ausyd1nxvm2019/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2019/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2019/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2020/terragrunt.hcl b/config/instances/ausyd1nxvm2020/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2020/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2020/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2021/terragrunt.hcl b/config/instances/ausyd1nxvm2021/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2021/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2021/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2022/terragrunt.hcl b/config/instances/ausyd1nxvm2022/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2022/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2022/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2023/terragrunt.hcl b/config/instances/ausyd1nxvm2023/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2023/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2023/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2024/terragrunt.hcl b/config/instances/ausyd1nxvm2024/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2024/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2024/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2025/terragrunt.hcl b/config/instances/ausyd1nxvm2025/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2025/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2025/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2026/terragrunt.hcl b/config/instances/ausyd1nxvm2026/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2026/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2026/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2027/terragrunt.hcl b/config/instances/ausyd1nxvm2027/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2027/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2027/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2028/terragrunt.hcl b/config/instances/ausyd1nxvm2028/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2028/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2028/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2029/terragrunt.hcl b/config/instances/ausyd1nxvm2029/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2029/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2029/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2030/terragrunt.hcl b/config/instances/ausyd1nxvm2030/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2030/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2030/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2031/terragrunt.hcl b/config/instances/ausyd1nxvm2031/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2031/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2031/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2032/terragrunt.hcl b/config/instances/ausyd1nxvm2032/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2032/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2032/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2033/terragrunt.hcl b/config/instances/ausyd1nxvm2033/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2033/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2033/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2034/terragrunt.hcl b/config/instances/ausyd1nxvm2034/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2034/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2034/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2035/terragrunt.hcl b/config/instances/ausyd1nxvm2035/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2035/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2035/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2036/terragrunt.hcl b/config/instances/ausyd1nxvm2036/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2036/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2036/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2037/terragrunt.hcl b/config/instances/ausyd1nxvm2037/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2037/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2037/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2038/terragrunt.hcl b/config/instances/ausyd1nxvm2038/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2038/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2038/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2039/terragrunt.hcl b/config/instances/ausyd1nxvm2039/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2039/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2039/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2040/terragrunt.hcl b/config/instances/ausyd1nxvm2040/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2040/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2040/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2041/terragrunt.hcl b/config/instances/ausyd1nxvm2041/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2041/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2041/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2042/terragrunt.hcl b/config/instances/ausyd1nxvm2042/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2042/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2042/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2043/terragrunt.hcl b/config/instances/ausyd1nxvm2043/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2043/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2043/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2044/terragrunt.hcl b/config/instances/ausyd1nxvm2044/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2044/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2044/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2045/terragrunt.hcl b/config/instances/ausyd1nxvm2045/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2045/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2045/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2046/terragrunt.hcl b/config/instances/ausyd1nxvm2046/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2046/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2046/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2047/terragrunt.hcl b/config/instances/ausyd1nxvm2047/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2047/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2047/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2048/terragrunt.hcl b/config/instances/ausyd1nxvm2048/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2048/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2048/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2049/terragrunt.hcl b/config/instances/ausyd1nxvm2049/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2049/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2049/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2050/terragrunt.hcl b/config/instances/ausyd1nxvm2050/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2050/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2050/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2051/terragrunt.hcl b/config/instances/ausyd1nxvm2051/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2051/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2051/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2052/terragrunt.hcl b/config/instances/ausyd1nxvm2052/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2052/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2052/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2053/terragrunt.hcl b/config/instances/ausyd1nxvm2053/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2053/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2053/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2054/terragrunt.hcl b/config/instances/ausyd1nxvm2054/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2054/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2054/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2055/terragrunt.hcl b/config/instances/ausyd1nxvm2055/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2055/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2055/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2056/terragrunt.hcl b/config/instances/ausyd1nxvm2056/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2056/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2056/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2057/terragrunt.hcl b/config/instances/ausyd1nxvm2057/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2057/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2057/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2058/terragrunt.hcl b/config/instances/ausyd1nxvm2058/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2058/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2058/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2059/terragrunt.hcl b/config/instances/ausyd1nxvm2059/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2059/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2059/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2060/terragrunt.hcl b/config/instances/ausyd1nxvm2060/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2060/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2060/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2061/terragrunt.hcl b/config/instances/ausyd1nxvm2061/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2061/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2061/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2062/terragrunt.hcl b/config/instances/ausyd1nxvm2062/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2062/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2062/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2063/terragrunt.hcl b/config/instances/ausyd1nxvm2063/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2063/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2063/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2064/terragrunt.hcl b/config/instances/ausyd1nxvm2064/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2064/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2064/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2065/terragrunt.hcl b/config/instances/ausyd1nxvm2065/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2065/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2065/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2066/terragrunt.hcl b/config/instances/ausyd1nxvm2066/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2066/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2066/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2067/terragrunt.hcl b/config/instances/ausyd1nxvm2067/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2067/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2067/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2068/terragrunt.hcl b/config/instances/ausyd1nxvm2068/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2068/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2068/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2069/terragrunt.hcl b/config/instances/ausyd1nxvm2069/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2069/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2069/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2070/terragrunt.hcl b/config/instances/ausyd1nxvm2070/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2070/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2070/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2071/terragrunt.hcl b/config/instances/ausyd1nxvm2071/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2071/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2071/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2072/terragrunt.hcl b/config/instances/ausyd1nxvm2072/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2072/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2072/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2073/terragrunt.hcl b/config/instances/ausyd1nxvm2073/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2073/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2073/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2074/terragrunt.hcl b/config/instances/ausyd1nxvm2074/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2074/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2074/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2075/terragrunt.hcl b/config/instances/ausyd1nxvm2075/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2075/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2075/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2076/terragrunt.hcl b/config/instances/ausyd1nxvm2076/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2076/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2076/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2077/terragrunt.hcl b/config/instances/ausyd1nxvm2077/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2077/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2077/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2078/terragrunt.hcl b/config/instances/ausyd1nxvm2078/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2078/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2078/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2079/terragrunt.hcl b/config/instances/ausyd1nxvm2079/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2079/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2079/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2080/terragrunt.hcl b/config/instances/ausyd1nxvm2080/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2080/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2080/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2081/terragrunt.hcl b/config/instances/ausyd1nxvm2081/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2081/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2081/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2082/terragrunt.hcl b/config/instances/ausyd1nxvm2082/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2082/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2082/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2083/terragrunt.hcl b/config/instances/ausyd1nxvm2083/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2083/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2083/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2084/terragrunt.hcl b/config/instances/ausyd1nxvm2084/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2084/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2084/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2085/terragrunt.hcl b/config/instances/ausyd1nxvm2085/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2085/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2085/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2086/terragrunt.hcl b/config/instances/ausyd1nxvm2086/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2086/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2086/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2087/terragrunt.hcl b/config/instances/ausyd1nxvm2087/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2087/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2087/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2088/terragrunt.hcl b/config/instances/ausyd1nxvm2088/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2088/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2088/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2089/terragrunt.hcl b/config/instances/ausyd1nxvm2089/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2089/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2089/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2090/terragrunt.hcl b/config/instances/ausyd1nxvm2090/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2090/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2090/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2091/terragrunt.hcl b/config/instances/ausyd1nxvm2091/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2091/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2091/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2092/terragrunt.hcl b/config/instances/ausyd1nxvm2092/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2092/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2092/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2093/terragrunt.hcl b/config/instances/ausyd1nxvm2093/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2093/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2093/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2094/terragrunt.hcl b/config/instances/ausyd1nxvm2094/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2094/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2094/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2095/terragrunt.hcl b/config/instances/ausyd1nxvm2095/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2095/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2095/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2096/terragrunt.hcl b/config/instances/ausyd1nxvm2096/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2096/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2096/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2097/terragrunt.hcl b/config/instances/ausyd1nxvm2097/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2097/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2097/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2098/terragrunt.hcl b/config/instances/ausyd1nxvm2098/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2098/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2098/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2099/terragrunt.hcl b/config/instances/ausyd1nxvm2099/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2099/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2099/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2100/terragrunt.hcl b/config/instances/ausyd1nxvm2100/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2100/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2100/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2101/terragrunt.hcl b/config/instances/ausyd1nxvm2101/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2101/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2101/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2102/terragrunt.hcl b/config/instances/ausyd1nxvm2102/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2102/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2102/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2103/terragrunt.hcl b/config/instances/ausyd1nxvm2103/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2103/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2103/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2104/terragrunt.hcl b/config/instances/ausyd1nxvm2104/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2104/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2104/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2105/terragrunt.hcl b/config/instances/ausyd1nxvm2105/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2105/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2105/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2106/terragrunt.hcl b/config/instances/ausyd1nxvm2106/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2106/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2106/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2107/terragrunt.hcl b/config/instances/ausyd1nxvm2107/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2107/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2107/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2108/terragrunt.hcl b/config/instances/ausyd1nxvm2108/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2108/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2108/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2109/terragrunt.hcl b/config/instances/ausyd1nxvm2109/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2109/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2109/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2110/terragrunt.hcl b/config/instances/ausyd1nxvm2110/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2110/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2110/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2111/terragrunt.hcl b/config/instances/ausyd1nxvm2111/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2111/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2111/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2112/terragrunt.hcl b/config/instances/ausyd1nxvm2112/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2112/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2112/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2113/terragrunt.hcl b/config/instances/ausyd1nxvm2113/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2113/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2113/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2114/terragrunt.hcl b/config/instances/ausyd1nxvm2114/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2114/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2114/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2115/terragrunt.hcl b/config/instances/ausyd1nxvm2115/terragrunt.hcl index c3099a9..0373545 100644 --- a/config/instances/ausyd1nxvm2115/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2115/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2116/terragrunt.hcl b/config/instances/ausyd1nxvm2116/terragrunt.hcl index de7d211..5f037b2 100644 --- a/config/instances/ausyd1nxvm2116/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2116/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2117/terragrunt.hcl b/config/instances/ausyd1nxvm2117/terragrunt.hcl index 98fe447..5123298 100644 --- a/config/instances/ausyd1nxvm2117/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2117/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2118/terragrunt.hcl b/config/instances/ausyd1nxvm2118/terragrunt.hcl index b33a99b..6d2a070 100644 --- a/config/instances/ausyd1nxvm2118/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2118/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/instances/ausyd1nxvm2119/terragrunt.hcl b/config/instances/ausyd1nxvm2119/terragrunt.hcl index 5326e08..c697f34 100644 --- a/config/instances/ausyd1nxvm2119/terragrunt.hcl +++ b/config/instances/ausyd1nxvm2119/terragrunt.hcl @@ -27,16 +27,13 @@ dependencies { paths = ["${get_repo_root()}/config/nodes/${local.node_name}"] } -terraform { - source = "${get_repo_root()}/modules/instance" -} generate "incus" { path = "incus.tf" if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { @@ -50,3 +47,7 @@ generate "incus" { } EOF } +terraform { + source = "${get_repo_root()}/modules/instance" +} + diff --git a/config/nodes/ausyd1nxvm2062_images/terragrunt.hcl b/config/nodes/ausyd1nxvm2062_images/terragrunt.hcl index 0a57118..25fb6e0 100644 --- a/config/nodes/ausyd1nxvm2062_images/terragrunt.hcl +++ b/config/nodes/ausyd1nxvm2062_images/terragrunt.hcl @@ -34,7 +34,7 @@ generate "provider" { if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { diff --git a/config/nodes/prodnxsr0009/terragrunt.hcl b/config/nodes/prodnxsr0009/terragrunt.hcl index 4f5bd58..8a60878 100644 --- a/config/nodes/prodnxsr0009/terragrunt.hcl +++ b/config/nodes/prodnxsr0009/terragrunt.hcl @@ -26,7 +26,7 @@ generate "provider" { if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { diff --git a/config/nodes/prodnxsr0010/terragrunt.hcl b/config/nodes/prodnxsr0010/terragrunt.hcl index 4f5bd58..8a60878 100644 --- a/config/nodes/prodnxsr0010/terragrunt.hcl +++ b/config/nodes/prodnxsr0010/terragrunt.hcl @@ -26,7 +26,7 @@ generate "provider" { if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { diff --git a/config/nodes/prodnxsr0011/terragrunt.hcl b/config/nodes/prodnxsr0011/terragrunt.hcl index 4f5bd58..8a60878 100644 --- a/config/nodes/prodnxsr0011/terragrunt.hcl +++ b/config/nodes/prodnxsr0011/terragrunt.hcl @@ -26,7 +26,7 @@ generate "provider" { if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { diff --git a/config/nodes/prodnxsr0012/terragrunt.hcl b/config/nodes/prodnxsr0012/terragrunt.hcl index 4f5bd58..8a60878 100644 --- a/config/nodes/prodnxsr0012/terragrunt.hcl +++ b/config/nodes/prodnxsr0012/terragrunt.hcl @@ -26,7 +26,7 @@ generate "provider" { if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote { diff --git a/config/nodes/prodnxsr0013/terragrunt.hcl b/config/nodes/prodnxsr0013/terragrunt.hcl index 4f5bd58..8a60878 100644 --- a/config/nodes/prodnxsr0013/terragrunt.hcl +++ b/config/nodes/prodnxsr0013/terragrunt.hcl @@ -26,7 +26,7 @@ generate "provider" { if_exists = "overwrite_terragrunt" contents = <<-EOF provider "incus" { - generate_client_certificates = true + generate_client_certificates = false accept_remote_certificate = true remote {