Skip to content

Commit

Permalink
Merge pull request #1081 from synfinatic/linkinsepector
Browse files Browse the repository at this point in the history
  • Loading branch information
synfinatic authored Oct 16, 2024
2 parents e8cf2d1 + cae6383 commit 6660bfc
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/md-links-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ on: [pull_request]
jobs:
check-links:
name: runner / linkspector
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run linkspector
uses: umbrelladocs/action-linkspector@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
fail_on_error: true
fail_on_error: true
7 changes: 5 additions & 2 deletions .linkspector.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
dirs:
- ./docs
files:
- ./*.md
useGitIgnore: true
- CHANGELOG.md
- CONTRIBUTING.md
- LICENSE.md
- README.md
useGitIgnore: true
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

### Bugs

* `aws-sso-profile` helper generates error about `--no-config-check` flag
* `aws-sso-profile` helper generates error about `--no-config-check` flag
* Honor `DefaultRegion` in config.yaml when using interactive prompt #1075

## [v2.0.0-beta4] - 2024-09-29

Expand Down
2 changes: 1 addition & 1 deletion docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ override this by first exporting `AWS_SSO` to the value you want to use.

If you want to pass specific args to `aws-sso-profile` you can use the
`$AWS_SSO_HELPER_ARGS` environment variable. If nothing is set, then
`--level error --no-config-check` is used.
`--level error` is used.

Currently the following shells are supported:

Expand Down
11 changes: 10 additions & 1 deletion docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -552,10 +552,19 @@ path or disable this configuration option.

#### AutoLogin

When set to `true`, `aws-sso` will behave like v1.x and automatically attempt to
When set to `true`, `aws-sso` will behave mostly like v1.x and automatically attempt to
login with your SSO provider to AWS Identity Center when your session has expired.
When set to `false` (the default) you must first run [aws-sso login](commands.md#login).

**Note:** This feature exists soley beacuse people don't like change. Enabling this
really isn't ideal from a security standpoint since it makes it more likely that
an attempted phish attack will be successful. Users should expect the login page to load
in their browser if and only if they have manually initiated the login process.

**Note:** that v2.x does not support the common [--no-config-check](
https://synfinatic.github.io/aws-sso-cli/v1.17.0/commands/#common-flags) flag that was
present in 1.x.

#### LogLevel / LogLines

By default, the `LogLevel` is 'info'. You can override it here or via
Expand Down

0 comments on commit 6660bfc

Please sign in to comment.