summaryrefslogtreecommitdiff
path: root/roles/pipeliner/tasks/auth.yml
blob: f2f060a2c1d79e691b8cc6347701d4ddb2f1404a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
# This will be unnecessary once IAM stuff is set up correctly

- name: Create AWS config directory
  file:
    path: /home/{{ ansible_user }}/.aws
    state: directory
    mode: 0755

- name: Install AWS credentials
  copy:
    src: /home/nick/.aws/credentials
    dest: /home/{{ ansible_user }}/.aws/credentials
    mode: 0600