Skip to content

Instantly share code, notes, and snippets.

@justengland
Created March 27, 2020 18:59
Show Gist options
  • Save justengland/06a831693c5f723b802df8056c907cc4 to your computer and use it in GitHub Desktop.
Save justengland/06a831693c5f723b802df8056c907cc4 to your computer and use it in GitHub Desktop.
Download and install the RDS cert into a windows instance.
$cert='rds-combined-ca-bundle.p7b'
$certDownload='https://s3.amazonaws.com/rds-downloads/rds-combined-ca-bundle.p7b'
Invoke-WebRequest -Uri $certDownload -OutFile $cert
Import-Certificate -FilePath $cert -CertStoreLocation Cert:\LocalMachine\Root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment