mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 14:55:00 +00:00
docs(cloudshell): Add workaround to clone from github (#3190)
This commit is contained in:
@@ -24,3 +24,16 @@ prowler
|
|||||||
```
|
```
|
||||||
|
|
||||||
- To download the results from AWS CloudShell, select Actions -> Download File and add the full path of each file. For the CSV file it will be something like `/home/cloudshell-user/output/prowler-output-123456789012-20221220191331.csv`
|
- To download the results from AWS CloudShell, select Actions -> Download File and add the full path of each file. For the CSV file it will be something like `/home/cloudshell-user/output/prowler-output-123456789012-20221220191331.csv`
|
||||||
|
|
||||||
|
## Clone the Prowler Github Repository in CloudShell
|
||||||
|
|
||||||
|
The limited storage that AWS CloudShell provides for the user's home directory causes issues when installing the poetry dependencies to run Prowler from GitHub. Here is a workaround:
|
||||||
|
```shell
|
||||||
|
git clone https://github.com/prowler-cloud/prowler.git
|
||||||
|
cd prowler
|
||||||
|
git checkout master
|
||||||
|
pip install poetry
|
||||||
|
mkdir /tmp/pypoetry
|
||||||
|
poetry config cache-dir /tmp/pypoetry
|
||||||
|
poetry shell
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user