Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


...

This article explains IP whitelisting and network security questions while using the Database Exporter for Jira Cloud app.

FAQs

  1. 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.

  2. 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 with 

    the 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 coming

     over 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

  3. Is SSL configured for the provided IP? 
    The SSL mode is automatically used if the database supports SSL.

...