...
This article explains IP whitelisting and network security questions while using the Database Exporter for Jira Cloud app.
FAQs
- Is the IP address is static?
Yes, the IP address is static and the IP to whitelist is "3.132.114.81"Network Security: . Please find the documentation page here. - How to secure the data from a Network Security point of view?
Basically the apps The app works it on an AWS VM environment and it gets the data from jira Jira over httpsHTTPS:<Jira URL> and it doesn't . It does not store the data anywhere , it process using withthe memory and it just
uses and it processes the data within its memory. It uses a JDBC connection to push it over to the client database. We would like to assure that the data will not store anywhere while getting the data from Jira as its comingover HTTPS.
The app uses
The data is not stored anywhere while pulling it from Jira as it is done over HTTPS. The app uses a JDBC connection to connect to the Postgres database. Connection The connection uses sslmode = prefer option which is described here: https://jdbc.postgresql.org/documentation/head/connect.htmland and here https://jdbc.postgresql.org/documentation/head/ssl-client.html Is SSL configured for the provided IP?
The SSL mode is automatically used if the database supports SSL.
...