Amazon web services – How to tag AWS resources using the variables defined in vars_file on ansible?
I am trying to create an IAM role with tag by Ansible using the following task. - hosts: localhost gather_facts: no vars_files: - variables.yml tasks: - name: Create IAM role for EKS cluster community.aws.iam_role: name: eks-role state: present tags: "{{…