[Ansible][EC2] ユーザーデータをAnsibleから実行するタスク
AWS EC2のユーザーデータをansibleで実行する方法です。もう1回流したいと思うことがあったので、タスクにしました。
- name: run USER_DATA of ec2 instance
become: true
shell: USER_DATA=$(set -o pipefail; curl http://169.254.169.254/latest/user-data ) && echo $USER_DATA && eval sudo $USER_DATA
args:
executable: /bin/bash
Author And Source
この問題について([Ansible][EC2] ユーザーデータをAnsibleから実行するタスク), 我々は、より多くの情報をここで見つけました https://qiita.com/xishan/items/bcb5b56eb92ecb2b7b4c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .