Não consigo resolver esse erro. Segue os códigos e o erro.
*** PLAYBOOK**
- hosts: terraform-ansible
tasks:
- name: instalando o python 3 e virtualenv
apt:
pkg:
- python3
- virtualenv
update_cache: yes
become: yes
* **HOSTS **
[terraform-ansible]
35.89.136.217
* **MAIN**
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.16"
}
}
required_version = ">= 1.2.0"
}
provider "aws" {
profile = "default"
region = "us-west-2"
}
resource "aws_instance" "app_server" {
ami = "ami-03d5c68bab01f3496"
instance_type = "t2.micro"
key_name= "iac-alura"
tags = {
Name = "Terraform Ansible Python"
}
}