Skip to content

Commit

Permalink
Merge pull request #1022 from synfinatic/fix-docs
Browse files Browse the repository at this point in the history
Remove Firefox Multi-Account Containers plugin
  • Loading branch information
synfinatic authored Aug 10, 2024
2 parents bb378be + 0a48032 commit ba44bed
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* Only the and `cache` command will auto-update the contents of `~/.aws/config` #974
* `tags` command no longer supports the `--force-update` option
* Change default log level from `warn` to `info`
* Remove mention from docs that Firefox Multi-Account Containers plugin is supported #1021

### New Features

Expand Down
31 changes: 21 additions & 10 deletions docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,8 @@ in a browser:
* `open` -- Opens the URL in your default browser or the browser you specified
via `--browser` or `Browser`
* `open-url-in-container` -- Generates a URL for the Firefox [Open Url in Container](
https://addons.mozilla.org/en-US/firefox/addon/open-url-in-container/) and
[Firefox Multi-Account Containers](
https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/)
plugins and runs your `UrlExecCommand`. Please be sure to install only
one of these plugins. ;)
https://addons.mozilla.org/en-US/firefox/addon/open-url-in-container/)
plugin and runs your `UrlExecCommand`.
* `print` -- Prints the URL with a message in your terminal to stderr
* `printurl` -- Prints only the URL in your terminal to stderr

Expand Down Expand Up @@ -308,12 +305,10 @@ UrlExecCommand:

##### Open URL in Firefox Container

Opens each IAM Role in a unique Firefox Container using either
Opens each IAM Role (and SSO Login page) in a unique Firefox Container using the
[Open Url in Container](
https://addons.mozilla.org/en-US/firefox/addon/open-url-in-container/) or the
[Firefox Multi-Account Containers](
https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/)
Firefox plugins.
https://addons.mozilla.org/en-US/firefox/addon/open-url-in-container/)
Firefox plugin.

```yaml
UrlAction: open-url-in-container
Expand All @@ -322,6 +317,22 @@ UrlExecCommand:
- "%s"
```

**Note:** If you do not want your SSO Login page to be opened in a container,
use the [AuthUrlAction](#authurlaction--browser--urlaction--urlexeccommand)
option to specify a different action:

```yaml
SSOConfig:
Default:
SSORegion: us-east-1
StartUrl: https://example.awsapps.com/start
AuthUrlAction: open
UrlAction: open-url-in-container
UrlExecCommand:
- /Applications/Firefox.app/Contents/MacOS/firefox
- "%s"
```

##### Use custom shell script

```yaml
Expand Down

0 comments on commit ba44bed

Please sign in to comment.