5
respostas

Erro ao executar o playbook

Estou recebendo este erro quando tento executar o comando do playbook, segue codigo e erro abaixo

- hosts: terraform-ansible
  tasks:
    - name: Instalando o python3, virtualenv
      apt:
        pkg:
          - python3
          - virtualenv
      update_cache: yes
      become: yes

[WARNING]: Invalid characters were found in group names but not replaced, use -vvvv to see details ERROR! conflicting action statements: apt, update_cache

The error appears to be in '/home/ubunto/Programação/terraform/playbook.yml': line 3, column 7, but may be elsewhere in the file depending on the exact syntax problem.

The offending line appears to be:

tasks:

- name: Instalando o python3, virtualenv
  ^ here
5 respostas

Oi, Márcio. Tudo bem?

Repare que o - name está com espaços adicionais, ele deveria estar alinhado com o tasks assim:

- hosts: terraform-ansible
  tasks:
  - name: Instalando o python3, virtualenv
    apt:
      pkg:
        - python3
        - virtualenv
    update_cache: yes
    become: yes

Espero ter ajudado, bons estudos!

Oi Vitor, copiei seu codigo, colei no editor e continuo com o mesmo erro... :/

![](Erro ao executar codigo )

no aguardo de uma ajuda...

A indexação da sua linha 3 está com um espaço antes do hífen. Ao corrigir o espaçamento, deverá corrigir os itens seguintes também.

Oi, Márcio! Coloca o conteúdo de name entre aspas (por causa da vírgula) e tenta novamente.

    - name: "Instalando o python3, virtualenv"