Skip to content

kouji-kojima-ansible/el7-init

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EC2 CentOS7, RHEL7 を 初期設定するロール (Role of initializing EL7)

Install role

ansible-galaxy install kouji-kojima-ansible.el7-init --force

Process details

  1. ロケール と タイムゾーン を日本に (Set Japanese locale, timezone)
  2. Proxy の 設定 (Set Proxy for env, yum, rpm, wget, git)
  3. 社内CA証明書 の インストール (Install CA)
  4. Firewalld と SELinux の 無効化 (Disable Firewalld, SELinux)
  5. Password ログイン 有効化 (Enable login for password)

Example site.yml

cat << EOF > site.yml
- hosts: servers
  remote_user: ec2-user
  become: yes
  vars:
    proxy_host: proxy.xxxxxxxxx.co.jp
    proxy_port: port_no
    no_proxys: xxxxx.co.jp,yyyy.co.jp
    ca_url: https://xxxxxxxx.co.jp/xxx.ca(*1)
    ca_sha256: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  roles:
    - { role: kouji-kojima-ansible.el7-init }
EOF

Example Hosts

# localhostの場合(In case of localhost)
cat << EOF > localhost
[servers]
localhost ansible_connection=local
EOF

# ステージング環境の場合(In case of staging environment)
cat << EOF > staging
[servers]
HostName or IP
HostName or IP

[all:vars]
ansible_ssh_user=ec2-user
EOF

Execute Playbook

実行例(Normal execution)

# ローカルの場合(In case of localhost)
ansible-playbook -i localhost site.yml --private-key=/path/key.pem

# ステージング環境の場合(In case of staging environment)
ansible-playbook -i staging site.yml --private-key=/path/key.pem

License

Apache License Version 2.0

Author Information

Kouji Kojima

Releases

No releases published

Packages

No packages published

Languages