aboutsummaryrefslogtreecommitdiff
path: root/opentofu/modules/ansible_provisioner/main.tf
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2025-03-04 20:09:31 +0100
committerclyhtsuriva <aimeric@adjutor.xyz>2025-03-04 20:09:31 +0100
commite02cf37430f92859a0f4b644af6d2665847c3997 (patch)
treeb12dbed1e7d6d0dea1d365f23bcec2f0f9cf3337 /opentofu/modules/ansible_provisioner/main.tf
parent0182fe51736e7610d4a63fe6767d08ffe5c5938c (diff)
opentofu: Incr. nb of k3s workers + remove ansible custom module
Diffstat (limited to 'opentofu/modules/ansible_provisioner/main.tf')
-rw-r--r--opentofu/modules/ansible_provisioner/main.tf15
1 files changed, 0 insertions, 15 deletions
diff --git a/opentofu/modules/ansible_provisioner/main.tf b/opentofu/modules/ansible_provisioner/main.tf
deleted file mode 100644
index b836213..0000000
--- a/opentofu/modules/ansible_provisioner/main.tf
+++ /dev/null
@@ -1,15 +0,0 @@
-resource "null_resource" "ansible_provisioner" {
- triggers = {
- ip_or_inventory = coalesce(var.vm_ip, var.inventory_file_path) # Choose based on what is provided
- }
-
- provisioner "local-exec" {
- command = <<-EOT
- ANSIBLE_HOST_KEY_CHECKING=False ANSIBLE_CONFIG=${path.root}/../ansible/ansible.cfg ansible-playbook -b -v \
- -i ${var.inventory_file_path != null ? var.inventory_file_path : "${var.vm_ip},"} \
- -u ${var.vm_username} \
- --private-key ${var.ssh_private_key_path} \
- ${var.ansible_playbook_path}
- EOT
- }
-}