diff options
Diffstat (limited to 'opentofu/variables.tf')
-rw-r--r-- | opentofu/variables.tf | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/opentofu/variables.tf b/opentofu/variables.tf index bdbc17f..c777b21 100644 --- a/opentofu/variables.tf +++ b/opentofu/variables.tf @@ -43,11 +43,15 @@ variable "ssh_public_key" { sensitive = true } -variable "ansible_playbook_path" { +variable "docker_ansible_playbook_path" { description = "Path to the Ansible playbook for Docker installation" type = string } +variable "k8s_ansible_playbook_path" { + description = "Path to the Ansible playbook for k8s installation" + type = string +} variable "k8s_worker_vm_name_prefix" { description = "VM name prefix" |