Open willifehler opened 6 months ago
My resource and variable:
resource "ansible_playbook" "playbook" {
for_each = local.ansible_playbook
playbook = each.value.ansible_playbook
name = each.key
groups = each.value.ansible_group_member
replayable = true
verbosity = 3
extra_vars = {
ansible_user = var.ansible_ssh_user
ansible_ssh_common_args = try(each.value.ansible_ssh_common_args, var.ansible_ssh_common_args)
}
#var_files = ["vars.yml"]
vault_files = ["vault.yml"]
vault_password_file = "vault_password"
timeouts {
create = "15m"
}
}
ansible_ssh_common_args = "'-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no'"
Hey there,
I've upgraded to Provider Version 1.3.0 and since then my deployment fails.
There is an unrequired
-o
before the hostname. If I downgrade to Version 1.2.0 everything is fine.Regards - Willi