Skip to content

Commit d37804f

Browse files
Merge pull request #137 from Red-Madrone-Solutions/config-steps-update
Config steps update - "Documentation"
2 parents a81fbbf + 14e8ddc commit d37804f

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

src/Commands/Configure.php

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -116,25 +116,28 @@ protected function askForAdminCredentials()
116116
$this->text('We will only use these for this session, then they will be forgotten.');
117117
$this->line('');
118118
$this->text('Visit this link: https://console.aws.amazon.com/iam/home#/users');
119-
$this->text(' --> Click "Add User."');
119+
$this->text(' --> Click "Create user"');
120120
$this->text(' ');
121121
$this->text(' --> Enter "sidecar-cli-helper" as the name.');
122-
$this->text(' --> Press "Next: Permissions."');
122+
$this->text(' --> Click "Next"');
123123
$this->text(' ');
124-
$this->text(' --> Choose "Attach existing policies directly."');
125-
$this->text(' --> Select "AdministratorAccess."');
124+
$this->text(' --> Choose "Attach policies directly"');
125+
$this->text(' --> Select "AdministratorAccess"');
126+
$this->text(' ');
127+
$this->text(' --> Click "Next"');
128+
$this->text(' ');
129+
$this->text(' --> Click "Create user"');
126130
$this->text(' ');
127-
$this->text(' --> Click "Create user."');
128-
$this->text('');
129131
$this->text(' --> Navigate to the "sidecar-cli-helper" user.');
130132
$this->text(' --> Click "Security Credentials."');
131-
$this->text(' --> Scroll down and click "Create access key."');
132-
$this->text(' --> Select "Application running outside AWS."');
133-
$this->text(' --> Click "Next."');
134-
$this->text(' --> Click "Create access key."');
133+
$this->text(' --> Scroll down to "Access keys" and click "Create access key"');
134+
$this->text(' --> Select "Application running outside AWS"');
135+
$this->text(' --> Click "Next"');
136+
$this->text(' ');
137+
$this->text(' --> Click "Create access key"');
135138
$this->line(str_repeat('-', $this->width));
136139

137-
$this->key = $this->ask('Enter the Access key ID');
140+
$this->key = $this->ask('Enter the Access key');
138141
$this->secret = $this->secret('Enter the Secret access key');
139142

140143
if ($this->key && $this->secret) {

0 commit comments

Comments
 (0)