Skip to content

Commit

Permalink
Read AWS credentials from disk (trailofbits#14382)
Browse files Browse the repository at this point in the history
Other programs can read the AWS key and secret from ~/.aws/credentials
(or other configuration file), and with this change Algo can as well.

Optional environment variables: AWS_PROFILE, AWS_SHARED_CREDENTIALS_FILE

The file is not read if the credentials are already set as an Ansible
variable or an environment variable.
  • Loading branch information
lefth committed Apr 5, 2022
1 parent c0968a8 commit 0cd040b
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 0cd040b

Please sign in to comment.