mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-17 18:33:06 -06:00
first pass at basic AL2022 support
This commit is contained in:
22
roles/aws_common/tasks/amazon-2.yml
Normal file
22
roles/aws_common/tasks/amazon-2.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
|
||||
- name: Install AWS support packages
|
||||
ansible.builtin.yum:
|
||||
name:
|
||||
- amazon-efs-utils
|
||||
- amazon-ssm-agent
|
||||
- awscli
|
||||
- git
|
||||
- ec2-utils
|
||||
vars:
|
||||
ansible_python_interpreter: /usr/bin/python2
|
||||
|
||||
- name: Install CloudWatch Agent
|
||||
ansible.builtin.yum:
|
||||
name:
|
||||
- "{{ aws_cloudwatch_agent_rpm }}"
|
||||
when: atl_aws_enable_cloudwatch is defined and atl_aws_enable_cloudwatch | bool
|
||||
notify:
|
||||
- Enable CloudWatch Agent
|
||||
vars:
|
||||
ansible_python_interpreter: /usr/bin/python2
|
||||
Reference in New Issue
Block a user