Releases: cytopia/aws-export-assume-profile
Releases · cytopia/aws-export-assume-profile
Release v0.4
Release v0.3
Allow whitespaces before/after equal sign
Previously only the following /.aws/config
was interpreted
[profile some-profile]
role_arn=arn:aws:iam::12345678:role/SOME-ROLE
source_profile=login
region=eu-central-1
With this PR, now also the following will be valid:
[profile some-profile]
role_arn = arn:aws:iam::12345678:role/SOME-ROLE
source_profile = login
region = eu-central-1
Release v0.2
Release v0.2
- Fix AWS region variable
- Switch indentation from tabs to spaces
- Use GitHub Actions instead of Travis-CI