-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
2,128 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ permissions: | |
contents: write | ||
|
||
jobs: | ||
|
||
check-version-txt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python Debugger: Current File", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${file}", | ||
"purpose": [ | ||
"debug-test" | ||
], | ||
"console": "integratedTerminal", | ||
"env": { | ||
"AWS_PROFILE": "dogan" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,4 +46,4 @@ | |
"color": "green" | ||
} | ||
], | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# AWS CLI v2 | ||
|
||
This bundle contains a built executable of the AWS CLI v2. | ||
|
||
## Installation | ||
|
||
To install the AWS CLI v2, run the `install` script: | ||
``` | ||
$ sudo ./install | ||
You can now run: /usr/local/bin/aws --version | ||
``` | ||
This will install the AWS CLI v2 at `/usr/local/bin/aws`. Assuming | ||
`/usr/local/bin` is on your `PATH`, you can now run: | ||
``` | ||
$ aws --version | ||
``` | ||
|
||
|
||
### Installing without sudo | ||
|
||
If you don't have ``sudo`` permissions or want to install the AWS | ||
CLI v2 only for the current user, run the `install` script with the `-b` | ||
and `-i` options: | ||
``` | ||
$ ./install -i ~/.local/aws-cli -b ~/.local/bin | ||
``` | ||
This will install the AWS CLI v2 in `~/.local/aws-cli` and create | ||
symlinks for `aws` and `aws_completer` in `~/.local/bin`. For more | ||
information about these options, run the `install` script with `-h`: | ||
``` | ||
$ ./install -h | ||
``` | ||
|
||
### Updating | ||
|
||
If you run the `install` script and there is a previously installed version | ||
of the AWS CLI v2, the script will error out. To update to the version included | ||
in this bundle, run the `install` script with `--update`: | ||
``` | ||
$ sudo ./install --update | ||
``` | ||
|
||
|
||
### Removing the installation | ||
|
||
To remove the AWS CLI v2, delete the its installation and symlinks: | ||
``` | ||
$ sudo rm -rf /usr/local/aws-cli | ||
$ sudo rm /usr/local/bin/aws | ||
$ sudo rm /usr/local/bin/aws_completer | ||
``` | ||
Note if you installed the AWS CLI v2 using the `-b` or `-i` options, you will | ||
need to remove the installation and the symlinks in the directories you | ||
specified. |
Oops, something went wrong.