Created
October 22, 2019 03:14
-
-
Save andromedarabbit/206f057a2b433d4e0a7f95ec505e5e1b to your computer and use it in GitHub Desktop.
AWS RDS CA 인증서 바꾸기
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws rds describe-db-instances | jq -r '.DBInstances[] | select(.CACertificateIdentifier == "rds-ca-2015") | .DBInstanceIdentifier' | xargs -I {} sh -c 'aws rds modify-db-instance --db-instance-identifier {} --ca-certificate-identifier=rds-ca-2019 --apply-immediately' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
rds-ca-2015 인증서를 rds-ca-2019 인증서로 갱신한다