CircleCI-Public / aws-cli-orb

Install and configure the AWS command-line interface (awscli)
https://circleci.com/orbs/registry/orb/circleci/aws-cli
MIT License
57 stars 51 forks source link

aws-cli/install is failing with cert error #55

Closed corydorning53 closed 4 years ago

corydorning53 commented 4 years ago

I've included the orb and I'm attempting to install but I'm receiving the error below. Everything worked fine until the last 3 builds i attempted:

AWS is not installed
Linux ffef583ffef5 4.15.0-1077-aws #81-Ubuntu SMP Wed Jun 24 16:48:15 UTC 2020 x86_64 GNU/Linux
curl: (51) SSL: no alternative certificate subject name matches target host name 'awscli.amazonaws.com'

Exited with code exit status 51

config.yml

version: 2.1
orbs:
  aws-cli: circleci/aws-cli@1.3.0
...
jobs:
  package-artifact:
    docker:
      - image: circleci/node:12.18
    working_directory: *workspace
    steps:
      - aws-cli/install
FelicianoTech commented 4 years ago

Hi. Thank you for reporting. I'll investigate this further but it looks like AWS's hostname is having an error, which means the orb is having troubling downloading the CLI.

rubelw commented 4 years ago

Looks like AWS just updated the cert. Try again and see if still getting the error. NOTE: Looks like the alternate name was removed from cert, and they just updated it.

corydorning53 commented 4 years ago

Looks like its good to go. Thanks for the quick response.