mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
15 lines
267 B
YAML
15 lines
267 B
YAML
#cloud-config
|
|
|
|
# Install and enable the SSM agent on supported instances.
|
|
|
|
# Tested on:
|
|
# - Amazon Linux 2023.4.20240416
|
|
|
|
package_upgrade: false
|
|
packages:
|
|
- amazon-ssm-agent
|
|
|
|
runcmd:
|
|
- systemctl daemon-reload
|
|
- systemctl enable --now 'amazon-ssm-agent.service'
|