Skip to content

Commit

Permalink
Merge pull request #137 from Red-Madrone-Solutions/config-steps-update
Browse files Browse the repository at this point in the history
Config steps update - "Documentation"
  • Loading branch information
aarondfrancis authored May 15, 2024
2 parents a81fbbf + 14e8ddc commit d37804f
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions src/Commands/Configure.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,25 +116,28 @@ protected function askForAdminCredentials()
$this->text('We will only use these for this session, then they will be forgotten.');
$this->line('');
$this->text('Visit this link: https://console.aws.amazon.com/iam/home#/users');
$this->text(' --> Click "Add User."');
$this->text(' --> Click "Create user"');
$this->text(' ');
$this->text(' --> Enter "sidecar-cli-helper" as the name.');
$this->text(' --> Press "Next: Permissions."');
$this->text(' --> Click "Next"');
$this->text(' ');
$this->text(' --> Choose "Attach existing policies directly."');
$this->text(' --> Select "AdministratorAccess."');
$this->text(' --> Choose "Attach policies directly"');
$this->text(' --> Select "AdministratorAccess"');
$this->text(' ');
$this->text(' --> Click "Next"');
$this->text(' ');
$this->text(' --> Click "Create user"');
$this->text(' ');
$this->text(' --> Click "Create user."');
$this->text('');
$this->text(' --> Navigate to the "sidecar-cli-helper" user.');
$this->text(' --> Click "Security Credentials."');
$this->text(' --> Scroll down and click "Create access key."');
$this->text(' --> Select "Application running outside AWS."');
$this->text(' --> Click "Next."');
$this->text(' --> Click "Create access key."');
$this->text(' --> Scroll down to "Access keys" and click "Create access key"');
$this->text(' --> Select "Application running outside AWS"');
$this->text(' --> Click "Next"');
$this->text(' ');
$this->text(' --> Click "Create access key"');
$this->line(str_repeat('-', $this->width));

$this->key = $this->ask('Enter the Access key ID');
$this->key = $this->ask('Enter the Access key');
$this->secret = $this->secret('Enter the Secret access key');

if ($this->key && $this->secret) {
Expand Down

0 comments on commit d37804f

Please sign in to comment.