Home > Software design >  How to undo --no-verify-ssl in aws cli
How to undo --no-verify-ssl in aws cli

Time:10-21

Basically, I was looking for answers for SSL Validation error that I am getting, while connecting airflow to AWS S3 bucket. With this being the easiest solution, I typed into the cmd prompt: aws s3 ls --no-verify-ssl

After this I read that disabling ssl is not a good thing to do, but I can't find a way to undo this. I am looking for something like: aws s3 ls --yes-verify-ssl, but that does not exist. So, please help me, if possible.

CodePudding user response:

Based on the command you provided it should have only applied an override to the default ssl-verification behavior while returning the list you were requesting by typing the 'ls'. Your config for s3 should be the same as before. If it had actually changed any settings, you could just run the command again with --no-verify-ssl false on order to revert the change.

ls commands documentation

  • Related