0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ElasticBeanstalkのebextentionを使ってSSM Agentをインストール

0
Posted at
.ebextensions/99_ssm_agent.config
container_commands:
  01-install_ssm_agent:
    command: bash .ebextensions/scripts/install_ssm_agent.sh

files:
  "/etc/sudoers.d/root-ignore-tty":
    mode: "000644"
    owner: "root"
    group: "root"
    content: |
      Defaults:root !requiretty
.ebextensions/scripts/install_ssm_agent.sh
# !/bin/bash
mkdir /tmp/ssm
curl https://amazon-ssm-ap-northeast-1.s3.amazonaws.com/latest/linux_amd64/amazon-ssm-agent.rpm -o /tmp/ssm/amazon-ssm-agent.rpm
sudo rpm -i /tmp/ssm/amazon-ssm-agent.rpm
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?