diff --git a/src/Commands/Configure.php b/src/Commands/Configure.php index 9cfddd0..68b7e06 100644 --- a/src/Commands/Configure.php +++ b/src/Commands/Configure.php @@ -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) {