diff --git a/playbook.yml b/playbook.yml index e2c58ed..b47f3fa 100644 --- a/playbook.yml +++ b/playbook.yml @@ -188,12 +188,11 @@ ansible.builtin.tempfile: state: file register: kubeconfig - - ansible.builtin.debug: - msg: "{{ lookup('dict', hostvars) }}" + - name: Store kubeconfig in tempfile ansible.builtin.copy: dest: "{{ kubeconfig.path }}" - content: "{{ ( lookup('dict', hostvars) )[0].value.cluster.kubeconfig }}" + content: "{{ ( lookup('dict', hostvars) ).value.cluster.kubeconfig }}" mode: 0600 - name: Replace API url