Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/docs/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Granted is created by [Chris Norman](https://cnorman.co) and the [Common Fate](h

## Is Granted free?

Yes! Granted is released as open source with an MIT licence. You are free to remix Granted and use it as part of your own internal CLI tools. You can find the source code to Granted on GitHub [here](https://github.com/common-fate/granted). Issues and Pull Requests are most welcome.
Yes! Granted is released as open source with an MIT licence. You are free to remix Granted and use it as part of your own internal CLI tools. You can find the source code to Granted on GitHub [here](https://github.com/fwdcloudsec/granted). Issues and Pull Requests are most welcome.

Common Fate is building tooling on top of Granted for identity workflows such as breakglass access and user access review evidence generation. This tooling is available as [Common Fate](https://commonfate.io) under a commercial licence. The Granted core CLI will always remain free and open source.

Expand Down
8 changes: 4 additions & 4 deletions src/content/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ In order to use Granted you'll need to install it on your system. Common Fate pr
[Homebrew](https://brew.sh/) is an open source package manager for MacOS. We publish a Homebrew formula for Granted. To install Granted with Homebrew, run the commands below in your terminal.

```bash
brew tap common-fate/granted
brew install common-fate/granted/granted
brew tap fwdcloudsec/granted
brew install fwdcloudsec/granted/granted
```
### Manual install
Select the steps which match your system architecture. You can find your architecture by running `uname -m` from a terminal window.
Expand Down Expand Up @@ -102,8 +102,8 @@ In order to use Granted you'll need to install it on your system. Common Fate pr
```
brew uninstall granted
brew tap-new $USER/local-tap
brew extract --version=0.36.2 common-fate/granted/granted $USER/local-tap
brew install common-fate/granted/granted@0.36.2
brew extract --version=0.36.2 fwdcloudsec/granted/granted $USER/local-tap
brew install fwdcloudsec/granted/granted@0.36.2
Comment on lines +105 to +106
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we've lost the version number auto updater :'(

Suggested change
brew extract --version=0.36.2 fwdcloudsec/granted/granted $USER/local-tap
brew install fwdcloudsec/granted/granted@0.36.2
brew extract --version=0.38.0 fwdcloudsec/granted/granted $USER/local-tap
brew install fwdcloudsec/granted/granted@0.38.0

```

#### For Intel (x86_64 architecture):
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Please don't hesitate to reach out! We want to make Granted work for everyone an

The browser extension uses [Native Messaging](https://developer.chrome.com/docs/extensions/develop/concepts/native-messaging) to communicate with the Granted CLI, for purposes such as checking the user confirmation code matches during an AWS IAM Identity Center sign-in.

For native messaging to work, the browser reads a JSON manifest file. This file is [created automatically by Granted](https://github.com/common-fate/granted/blob/5dbee29eefcdf0627ffc752c1e18fd77ff0451a8/pkg/chromemsg/configure.go).
For native messaging to work, the browser reads a JSON manifest file. This file is [created automatically by Granted](https://github.com/fwdcloudsec/granted/blob/5dbee29eefcdf0627ffc752c1e18fd77ff0451a8/pkg/chromemsg/configure.go).

If this file is not present in the correct location for your browser, you may see an error message like the following:

Expand Down