Skip to content

Commit

Permalink
6.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
redvox committed Apr 4, 2024
1 parent c0f6777 commit 2763912
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ Release dates will be in YYYY-MM-DD format.

## Unreleased

## 6.3.0 - 2024-04-04

### Added
- Support for Google cloud projects (thanks to @3cham)
- Support for multiple aws access keys

## 6.2.1 - 2024-01-04

### Dependency
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ productive:
# - profiles section is no longer needed
gcp-project-dev:
color: '#FF0000'
team: teama
team: team2
region: europe-west1
type: gcp

gcp-project-prd:
color: '#388E3C'
team: teama
team: team2
region: europe-west1
type: gcp
```
Expand All @@ -67,10 +67,10 @@ The login flow will be automatically stopped after 60 seconds of inactivity or n
It will trigger the login flow again after 8 hours.
### Chain Assume
### AWS Chain Assume
You may add a "source" profile which will be used to assume a given role.
This is useful when your own user account can not assume service specific roles.
This is useful when your want to assume specific service roles, but can not do so from your user directly.
```yaml
productive:
Expand All @@ -90,7 +90,7 @@ In this example, logsmith will first assume the role 'developer-role', write the
Please keep in mind that the roles will be assumed in the given order.
## Access key
## AWS Access key
Please use the dialog option provided by logsmith to set your access key or save it in `.aws/credentials`
under the profile name *access-key*.

Expand All @@ -100,7 +100,7 @@ aws_access_key_id = blablubb
aws_secret_access_key = supersecret
```

## Switching region
## AWS Regions
Logsmith will use the `.aws/config` to set your region independent of your credentials in `.aws/credentials`.

```config
Expand Down
2 changes: 1 addition & 1 deletion app/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = (6, 2, 1)
__version__ = (6, 3, 0)
__version_string__ = '.'.join(str(i) for i in __version__)

0 comments on commit 2763912

Please sign in to comment.