mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-17 18:33:06 -06:00
al2022 -> al2023
This commit is contained in:
25
roles/aws_common/tasks/amazon-2023.yml
Normal file
25
roles/aws_common/tasks/amazon-2023.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
|
||||
- name: Install AWS support packages
|
||||
ansible.builtin.dnf:
|
||||
name:
|
||||
- amazon-efs-utils
|
||||
- amazon-ssm-agent
|
||||
- awscli
|
||||
- git
|
||||
- ec2-utils
|
||||
|
||||
# https://github.com/amazonlinux/amazon-linux-2023/issues/164
|
||||
- name: Ensure group "aoc" exists
|
||||
ansible.builtin.group:
|
||||
name: aoc
|
||||
state: present
|
||||
when: atl_aws_enable_cloudwatch is defined and atl_aws_enable_cloudwatch | bool
|
||||
|
||||
- name: Install CloudWatch Agent
|
||||
ansible.builtin.dnf:
|
||||
name:
|
||||
- amazon-cloudwatch-agent
|
||||
when: atl_aws_enable_cloudwatch is defined and atl_aws_enable_cloudwatch | bool
|
||||
notify:
|
||||
- Enable CloudWatch Agent
|
||||
Reference in New Issue
Block a user