Skip to content

Commit

Permalink
Read AWS credentials from disk with AWS_PROFILE and AWS_SHARED_CREDEN…
Browse files Browse the repository at this point in the history
…TIALS_FILE (trailofbits#14382)

Other programs can read from ~/.aws/credentials, and now Algo can as well.
  • Loading branch information
lefth committed Apr 5, 2022
1 parent c0968a8 commit ead2ae3
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
35 changes: 35 additions & 0 deletions roles/cloud-ec2/tasks/discover-credentials.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
- name: "Find AWS profile and credentials file"
block:
- set_fact:
aws_credentials_path: "{{ lookup('env', 'HOME') }}/.aws/credentials"

- set_fact:
aws_credentials_path: "{{ lookup('env', 'AWS_SHARED_CREDENTIALS_FILE') }}"
when:
- lookup('env','AWS_SHARED_CREDENTIALS_FILE')|length > 0
- debug: var=aws_credentials_path

- set_fact:
aws_profile_id: "default"

- set_fact:
aws_profile_id: "{{ lookup('env', 'AWS_PROFILE') }}"
when:
- lookup('env','AWS_PROFILE')|length > 0

- name: "Look up AWS credentials"
block:
- set_fact:
aws_access_key: "{{ lookup('ini', 'aws_access_key_id', section=aws_profile_id, file=aws_credentials_path) }}"
ignore_errors: true
when:
- aws_access_key is undefined
- lookup('env','AWS_ACCESS_KEY_ID')|length <= 0

- set_fact:
aws_secret_key: "{{ lookup('ini', 'aws_secret_access_key', section=aws_profile_id, file=aws_credentials_path) }}"
ignore_errors: true
when:
- aws_secret_key is undefined
- lookup('env','AWS_SECRET_ACCESS_KEY')|length <= 0
3 changes: 3 additions & 0 deletions roles/cloud-ec2/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
- name: Build python virtual environment
import_tasks: venv.yml

- name: Include credential discovery
import_tasks: discover-credentials.yml

- name: Include prompts
import_tasks: prompts.yml

Expand Down

0 comments on commit ead2ae3

Please sign in to comment.