├── config-repo.iml ├── zuulservice ├── zuulservice-dev.yml ├── zuulservice-aws-dev.yml ├── zuulservice-prod.yml └── zuulservice.yml ├── authenticationservice ├── authenticationservice-dev.yml ├── authenticationservice-prod.yml ├── authenticationservice-aws-dev.yml └── authenticationservice.yml ├── specialroutesservice ├── specialroutesservice-dev.yml ├── specialroutesservice.yml └── specialroutesservice-prod.yml ├── organizationservice ├── organizationservice.yml ├── organizationservice-dev.yml ├── organizationservice-prod.yml └── organizationservice-aws-dev.yml └── licensingservice ├── licensingservice-dev.yml ├── licensingservice.yml ├── licensingservice-prod.yml └── licensingservice-aws-dev.yml /config-repo.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /zuulservice/zuulservice-dev.yml: -------------------------------------------------------------------------------- 1 | zuul.ignored-services: "orgservice-new" 2 | zuul.prefix: /api 3 | zuul.routes.organizationservice: /organization/** 4 | zuul.routes.licensingservice: /licensing/** 5 | zuul.routes.authenticationservice: /auth/** 6 | zuul.sensitiveHeaders: Authorization 7 | zuul.debug.request: true 8 | #hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 2 9 | #hystrix.command.licensingservice.execution.isolation.thread.timeoutInMilliseconds: 2 10 | #licensingservice.ribbon.ReadTimeout: 2 11 | signing.key: "345345fsdfsf5345" 12 | -------------------------------------------------------------------------------- /zuulservice/zuulservice-aws-dev.yml: -------------------------------------------------------------------------------- 1 | zuul.ignored-services: "orgservice-new" 2 | zuul.prefix: /api 3 | zuul.routes.organizationservice: /organization/** 4 | zuul.routes.licensingservice: /licensing/** 5 | zuul.routes.authenticationservice: /auth/** 6 | zuul.sensitiveHeaders: Authorization 7 | zuul.debug.request: true 8 | #hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 2 9 | #hystrix.command.licensingservice.execution.isolation.thread.timeoutInMilliseconds: 2 10 | #licensingservice.ribbon.ReadTimeout: 2 11 | signing.key: "345345fsdfsf5345" 12 | -------------------------------------------------------------------------------- /zuulservice/zuulservice-prod.yml: -------------------------------------------------------------------------------- 1 | zuul.ignored-services: "orgservice-new" 2 | zuul.prefix: /api 3 | zuul.routes.organizationservice: /organization/** 4 | zuul.routes.licensingservice: /licensing/** 5 | zuul.routes.authenticationservice: /auth/** 6 | zuul.sensitiveHeaders: Cookie,Set-Cookie 7 | zuul.debug.request: true 8 | #hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 2 9 | #hystrix.command.licensingservice.execution.isolation.thread.timeoutInMilliseconds: 2 10 | #licensingservice.ribbon.ReadTimeout: 2 11 | signing.key: "345345fsdfsf5345" 12 | -------------------------------------------------------------------------------- /authenticationservice/authenticationservice-dev.yml: -------------------------------------------------------------------------------- 1 | spring.datasource.platform: "postgres" 2 | spring.jpa.show-sql: "true" 3 | spring.database.driverClassName: "org.postgresql.Driver" 4 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_dev" 5 | spring.datasource.username: "postgres_dev" 6 | spring.datasource.password: "{cipher}d495ce8603af958b2526967648aa9620b7e834c4eaff66014aa805450736e119" 7 | spring.datasource.testWhileIdle: "true" 8 | spring.datasource.validationQuery: "SELECT 1" 9 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 10 | signing.key: "345345fsdfsf5345" 11 | -------------------------------------------------------------------------------- /specialroutesservice/specialroutesservice-dev.yml: -------------------------------------------------------------------------------- 1 | spring.jpa.database: "POSTGRESQL" 2 | spring.datasource.platform: "postgres" 3 | spring.jpa.show-sql: "true" 4 | spring.database.driverClassName: "org.postgresql.Driver" 5 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_dev" 6 | spring.datasource.username: "postgres_dev" 7 | spring.datasource.password: "{cipher}d495ce8603af958b2526967648aa9620b7e834c4eaff66014aa805450736e119" 8 | spring.datasource.testWhileIdle: "true" 9 | spring.datasource.validationQuery: "SELECT 1" 10 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 11 | -------------------------------------------------------------------------------- /organizationservice/organizationservice.yml: -------------------------------------------------------------------------------- 1 | spring.jpa.database: "POSTGRESQL" 2 | spring.datasource.platform: "postgres" 3 | spring.jpa.show-sql: "true" 4 | spring.database.driverClassName: "org.postgresql.Driver" 5 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_local" 6 | spring.datasource.username: "postgres" 7 | spring.datasource.password: "{cipher}4788dfe1ccbe6485934aec2ffeddb06163ea3d616df5fd75be96aadd4df1da91" 8 | spring.datasource.testWhileIdle: "true" 9 | spring.datasource.validationQuery: "SELECT 1" 10 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 11 | signing.key: "345345fsdfsf5345" 12 | -------------------------------------------------------------------------------- /organizationservice/organizationservice-dev.yml: -------------------------------------------------------------------------------- 1 | spring.jpa.database: "POSTGRESQL" 2 | spring.datasource.platform: "postgres" 3 | spring.jpa.show-sql: "false" 4 | spring.database.driverClassName: "org.postgresql.Driver" 5 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_dev" 6 | spring.datasource.username: "postgres_dev" 7 | spring.datasource.password: "{cipher}d495ce8603af958b2526967648aa9620b7e834c4eaff66014aa805450736e119" 8 | spring.datasource.testWhileIdle: "true" 9 | spring.datasource.validationQuery: "SELECT 1" 10 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 11 | signing.key: "345345fsdfsf5345" 12 | -------------------------------------------------------------------------------- /organizationservice/organizationservice-prod.yml: -------------------------------------------------------------------------------- 1 | spring.jpa.database: "POSTGRESQL" 2 | spring.datasource.platform: "postgres" 3 | spring.jpa.show-sql: "true" 4 | spring.database.driverClassName: "org.postgresql.Driver" 5 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_prod" 6 | spring.datasource.username: "postgres_prod" 7 | spring.datasource.password: "{cipher}217b23d6209b10bd82c49a9df6490670052a9cd9d4403dcc1288db21c35c48ac" 8 | spring.datasource.testWhileIdle: "true" 9 | spring.datasource.validationQuery: "SELECT 1" 10 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 11 | signing.key: "345345fsdfsf5345" 12 | -------------------------------------------------------------------------------- /authenticationservice/authenticationservice-prod.yml: -------------------------------------------------------------------------------- 1 | spring.jpa.database: "POSTGRESQL" 2 | spring.datasource.platform: "postgres" 3 | spring.jpa.show-sql: "true" 4 | spring.database.driverClassName: "org.postgresql.Driver" 5 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_prod" 6 | spring.datasource.username: "postgres_prod" 7 | spring.datasource.password: "{cipher}217b23d6209b10bd82c49a9df6490670052a9cd9d4403dcc1288db21c35c48ac" 8 | spring.datasource.testWhileIdle: "true" 9 | spring.datasource.validationQuery: "SELECT 1" 10 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 11 | signing.key: "345345fsdfsf5345" 12 | -------------------------------------------------------------------------------- /specialroutesservice/specialroutesservice.yml: -------------------------------------------------------------------------------- 1 | example.property: "I AM IN THE DEFAULT" 2 | spring.jpa.database: "POSTGRESQL" 3 | spring.datasource.platform: "postgres" 4 | spring.jpa.show-sql: "true" 5 | spring.database.driverClassName: "org.postgresql.Driver" 6 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_local" 7 | spring.datasource.username: "postgres" 8 | spring.datasource.password: "{cipher}4788dfe1ccbe6485934aec2ffeddb06163ea3d616df5fd75be96aadd4df1da91" 9 | spring.datasource.testWhileIdle: "true" 10 | spring.datasource.validationQuery: "SELECT 1" 11 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 12 | -------------------------------------------------------------------------------- /specialroutesservice/specialroutesservice-prod.yml: -------------------------------------------------------------------------------- 1 | example.property: "I AM A PROD PROPERTY OVERRIDE" 2 | spring.jpa.database: "POSTGRESQL" 3 | spring.datasource.platform: "postgres" 4 | spring.jpa.show-sql: "true" 5 | spring.database.driverClassName: "org.postgresql.Driver" 6 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_prod" 7 | spring.datasource.username: "postgres_prod" 8 | spring.datasource.password: "{cipher}217b23d6209b10bd82c49a9df6490670052a9cd9d4403dcc1288db21c35c48ac" 9 | spring.datasource.testWhileIdle: "true" 10 | spring.datasource.validationQuery: "SELECT 1" 11 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 12 | -------------------------------------------------------------------------------- /organizationservice/organizationservice-aws-dev.yml: -------------------------------------------------------------------------------- 1 | spring.jpa.database: "POSTGRESQL" 2 | spring.datasource.platform: "postgres" 3 | spring.jpa.show-sql: "true" 4 | spring.datasource.url: "jdbc:postgresql://eagle-eye-aws-dev.c5q3imcw6rqh.ap-south-1.rds.amazonaws.com:5432/eagle_eye_aws_dev" 5 | spring.datasource.username: "postgres_aws_dev" 6 | spring.datasource.password: "{cipher}db4e4e53bbaeba4b10cf4fdc913871d0560d3c8acef2fa3579b1609a83647eb46e337452b6e5dec1ede6ae820df67c3a" 7 | spring.datasource.testWhileIdle: "true" 8 | spring.datasource.validationQuery: "SELECT 1" 9 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 10 | signing.key: "345345fsdfsf5345" 11 | -------------------------------------------------------------------------------- /licensingservice/licensingservice-dev.yml: -------------------------------------------------------------------------------- 1 | spring.jpa.database: "POSTGRESQL" 2 | spring.datasource.platform: "postgres" 3 | spring.jpa.show-sql: "false" 4 | spring.database.driverClassName: "org.postgresql.Driver" 5 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_dev" 6 | spring.datasource.username: "postgres_dev" 7 | spring.datasource.password: "{cipher}d495ce8603af958b2526967648aa9620b7e834c4eaff66014aa805450736e119" 8 | spring.datasource.testWhileIdle: "true" 9 | spring.datasource.validationQuery: "SELECT 1" 10 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 11 | redis.server: "redis" 12 | redis.port: "6379" 13 | signing.key: "345345fsdfsf5345" 14 | -------------------------------------------------------------------------------- /authenticationservice/authenticationservice-aws-dev.yml: -------------------------------------------------------------------------------- 1 | spring.datasource.platform: "postgres" 2 | spring.jpa.show-sql: "true" 3 | spring.database.driverClassName: "org.postgresql.Driver" 4 | spring.datasource.url: "jdbc:postgresql://eagle-eye-aws-dev.c5q3imcw6rqh.ap-south-1.rds.amazonaws.com:5432/eagle_eye_aws_dev" 5 | spring.datasource.username: "postgres_aws_dev" 6 | spring.datasource.password: "{cipher}db4e4e53bbaeba4b10cf4fdc913871d0560d3c8acef2fa3579b1609a83647eb46e337452b6e5dec1ede6ae820df67c3a" 7 | spring.datasource.testWhileIdle: "true" 8 | spring.datasource.validationQuery: "SELECT 1" 9 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 10 | signing.key: "345345fsdfsf5345" 11 | -------------------------------------------------------------------------------- /authenticationservice/authenticationservice.yml: -------------------------------------------------------------------------------- 1 | spring.jpa.database: "POSTGRESQL" 2 | spring.datasource.platform: "postgres" 3 | spring.jpa.show-sql: "true" 4 | spring.database.driverClassName: "org.postgresql.Driver" 5 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_local" 6 | spring.datasource.driver-class-name: "org.postgresql.Driver" 7 | spring.datasource.username: "postgres" 8 | spring.datasource.password: "{cipher}4788dfe1ccbe6485934aec2ffeddb06163ea3d616df5fd75be96aadd4df1da91" 9 | spring.datasource.testWhileIdle: "true" 10 | spring.datasource.validationQuery: "SELECT 1" 11 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 12 | signing.key: "345345fsdfsf5345" 13 | -------------------------------------------------------------------------------- /licensingservice/licensingservice.yml: -------------------------------------------------------------------------------- 1 | example.property: "I AM IN THE DEFAULT" 2 | spring.jpa.database: "POSTGRESQL" 3 | spring.datasource.platform: "postgres" 4 | spring.jpa.show-sql: "true" 5 | spring.database.driverClassName: "org.postgresql.Driver" 6 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_local" 7 | spring.datasource.username: "postgres" 8 | spring.datasource.password: "{cipher}4788dfe1ccbe6485934aec2ffeddb06163ea3d616df5fd75be96aadd4df1da91" 9 | spring.datasource.testWhileIdle: "true" 10 | spring.datasource.validationQuery: "SELECT 1" 11 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 12 | redis.server: "redis" 13 | redis.port: "6379" 14 | signing.key: "345345fsdfsf5345" 15 | -------------------------------------------------------------------------------- /licensingservice/licensingservice-prod.yml: -------------------------------------------------------------------------------- 1 | example.property: "I AM A PROD PROPERTY OVERRIDE" 2 | spring.jpa.database: "POSTGRESQL" 3 | spring.datasource.platform: "postgres" 4 | spring.jpa.show-sql: "true" 5 | spring.database.driverClassName: "org.postgresql.Driver" 6 | spring.datasource.url: "jdbc:postgresql://database:5432/eagle_eye_prod" 7 | spring.datasource.username: "postgres_prod" 8 | spring.datasource.password: "{cipher}217b23d6209b10bd82c49a9df6490670052a9cd9d4403dcc1288db21c35c48ac" 9 | spring.datasource.testWhileIdle: "true" 10 | spring.datasource.validationQuery: "SELECT 1" 11 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 12 | redis.server: "redis" 13 | redis.port: "6379" 14 | signing.key: "345345fsdfsf5345" 15 | -------------------------------------------------------------------------------- /licensingservice/licensingservice-aws-dev.yml: -------------------------------------------------------------------------------- 1 | spring.jpa.database: "POSTGRESQL" 2 | spring.datasource.platform: "postgres" 3 | spring.jpa.show-sql: "true" 4 | spring.database.driverClassName: "org.postgresql.Driver" 5 | spring.datasource.url: "jdbc:postgresql://eagle-eye-aws-dev.c5q3imcw6rqh.ap-south-1.rds.amazonaws.com:5432/eagle_eye_aws_dev" 6 | spring.datasource.username: "postgres_aws_dev" 7 | spring.datasource.password: "{cipher}db4e4e53bbaeba4b10cf4fdc913871d0560d3c8acef2fa3579b1609a83647eb46e337452b6e5dec1ede6ae820df67c3a" 8 | spring.datasource.testWhileIdle: "true" 9 | spring.datasource.validationQuery: "SELECT 1" 10 | spring.jpa.properties.hibernate.dialect: "org.hibernate.dialect.PostgreSQLDialect" 11 | redis.server: "spmia-tmx-redis-dev.lxxnq4.0001.usw1.cache.amazonaws.com" 12 | redis.port: "6379" 13 | signing.key: "345345fsdfsf5345" 14 | -------------------------------------------------------------------------------- /zuulservice/zuulservice.yml: -------------------------------------------------------------------------------- 1 | zuul.ignored-services: "*" 2 | zuul.prefix: /api 3 | zuul.routes.organizationservice: /organization/** 4 | zuul.routes.licensingservice: /licensing/** 5 | zuul.routes.authenticationservice: /auth/** 6 | #zuul.routes.licensestatic.path: /licensestatic/** 7 | #zuul.routes.licensestatic.url: http://licenseservice-static:8081 8 | #zuul.routes.licensestatic.serviceId: licensestatic 9 | #zuul.routes.licensestatic.ribbon.listOfServers: http://licenseservice-static1:8081, http://licenseservice-static2:8082 10 | #ribbon.eureka.enabled: false 11 | zuul.sensitiveHeaders: Cookie,Set-Cookie 12 | zuul.debug.request: true 13 | hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 2500 14 | #hystrix.command.licensingservice.execution.isolation.thread.timeoutInMilliseconds: 2 15 | #licensingservice.ribbon.ReadTimeout: 2 16 | signing.key: "345345fsdfsf5345" 17 | --------------------------------------------------------------------------------