services/application-services/product-service/src/main/java/com/amazonaws/saas/eks/auth/ProductSecurityConfig.java [36:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	protected void configure(HttpSecurity http) throws Exception {

		http.headers().cacheControl();
		http.csrf().disable().authorizeRequests().antMatchers("/health/**").permitAll().antMatchers("/**/api/**")
				.authenticated()
				.and().addFilterBefore(awsCognitoJwtAuthenticationFilter, UsernamePasswordAuthenticationFilter.class);
		http.cors();
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



services/application-services/order-service/src/main/java/com/amazonaws/saas/eks/auth/OrderSecurityConfig.java [36:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	protected void configure(HttpSecurity http) throws Exception {

		http.headers().cacheControl();
		http.csrf().disable().authorizeRequests().antMatchers("/health/**").permitAll().antMatchers("/**/api/**")
				.authenticated()
				.and().addFilterBefore(awsCognitoJwtAuthenticationFilter, UsernamePasswordAuthenticationFilter.class);
		http.cors();
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



