services/billing-gcp/src/main/java/com/epam/datalab/billing/gcp/conf/SecurityConfig.java [58:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void configure(HttpSecurity http) throws Exception {
        super.configure(http);
        http
                .anonymous().disable()
                .authorizeRequests()
                .anyRequest()
                .authenticated();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



services/billing-azure/src/main/java/com/epam/datalab/billing/azure/config/SecurityConfig.java [58:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void configure(HttpSecurity http) throws Exception {
        super.configure(http);
        http
                .anonymous().disable()
                .authorizeRequests()
                .anyRequest()
                .authenticated();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



services/billing-aws/src/main/java/com/epam/datalab/conf/SecurityConfig.java [58:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void configure(HttpSecurity http) throws Exception {
        super.configure(http);
        http
                .anonymous().disable()
                .authorizeRequests()
                .anyRequest()
                .authenticated();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



