Overview Ansible-Galaxy 에 대해서 공부해보려고 한다. Ansible 설치 pip install ansible yum install ansible -y apt install ansible brew install ansible Ansible Galaxy란? Ansible Galaxy는 Ansible 콘텐츠를 공유하고 관리하기 위한 저장소이다. 이는 사용자가 Ansible에 대한 역할과 컬렉션을 찾고, 다운로드하고, 공유할 수 있는 플랫폼을 제공한다. Role Collection Ansible Galaxy 공식 사이트 Role이란? Ansible의 역할은 특정 작업 또는 작업 집합을 자동화하기 위해 일련의 작업, 변수, 파일 및 핸들러를 캡슐화하는 모듈식 단위이다. 역할은 재사용이 가능하며..