AWS AmazonRDS documentation change
Summary
Removed keystore creation example and fixed SSL_PORT data type in code sample
Security assessment
Code sample correction (Integer→String) prevents runtime errors but doesn't mitigate vulnerabilities. Link updates maintain documentation accuracy for TLS implementation without adding new security guidance.
Diff
diff --git a/AmazonRDS/latest/UserGuide/Appendix.Oracle.Options.SSL.JDBC.md b/AmazonRDS/latest/UserGuide/Appendix.Oracle.Options.SSL.JDBC.md index 577b87976..781fdbd06 100644 --- a//AmazonRDS/latest/UserGuide/Appendix.Oracle.Options.SSL.JDBC.md +++ b//AmazonRDS/latest/UserGuide/Appendix.Oracle.Options.SSL.JDBC.md @@ -11 +11 @@ To use an SSL connection over JDBC, you must create a keystore, trust the Amazon -To create the keystore in JKS format, you can use the following command. For more information about creating the keystore, see the [Creating a keystore](https://docs.oracle.com/cd/E35822_01/server.740/es_admin/src/tadm_ssl_jetty_keystore.html) in the Oracle documentation. For reference information, see [keytool](https://docs.oracle.com/javase/8/docs/technotes/tools/windows/keytool.html) in the _Java Platform, Standard Edition Tools Reference_. +For more information about creating the keystore, see the [Creating a keystore](https://docs.oracle.com/en/database/oracle/oracle-database/19/jjdbc/client-side-security.html) in the Oracle documentation. For reference information, see [keytool](https://docs.oracle.com/javase/8/docs/technotes/tools/windows/keytool.html) in the _Java Platform, Standard Edition Tools Reference_. @@ -55 +55 @@ The following code example shows how to set up the SSL connection using JDBC. - private static final Integer SSL_PORT = "ssl-option-port-configured-in-option-group"; + private static final String SSL_PORT = "ssl-option-port-configured-in-option-group";