├── .gitattributes ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-query-template.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── .linkspector.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── markdown-link-check.yml │ └── sync-label-from-azsdk-repo.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── aad ├── spring-cloud-azure-starter-active-directory-b2c │ ├── aad-b2c-resource-server │ │ ├── README.md │ │ ├── docs │ │ │ ├── image-add-application-roles.png │ │ │ ├── image-add-delegated-permissions.png │ │ │ ├── image-add-user-flow.png │ │ │ ├── image-configuration-application-roles.png │ │ │ ├── image-consent-application-and-delegated-permissions.png │ │ │ ├── image-expose-an-api.png │ │ │ ├── image-final-configuration.png │ │ │ ├── image-select-a-user-flow-type.png │ │ │ ├── image-selected-application.png │ │ │ ├── image-setting-relevant-content.png │ │ │ └── image-user-flow-finally.png │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── aad │ │ │ │ └── b2c │ │ │ │ ├── AadB2cResourceServerSampleApplication.java │ │ │ │ ├── controller │ │ │ │ └── WebController.java │ │ │ │ └── security │ │ │ │ └── WebSecurityConfiguration.java │ │ │ └── resources │ │ │ └── application.yml │ └── aad-b2c-web-application │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── aad │ │ │ └── b2c │ │ │ ├── AadB2cOidcSampleApplication.java │ │ │ ├── controller │ │ │ └── WebController.java │ │ │ └── security │ │ │ └── WebSecurityConfiguration.java │ │ └── resources │ │ ├── application.yml │ │ └── templates │ │ └── home.html ├── spring-cloud-azure-starter-active-directory │ ├── aad-resource-server-by-filter-stateless │ │ ├── README.md │ │ ├── docs │ │ │ └── demo.webp │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── aad │ │ │ │ │ ├── AadStatelessBackendSampleApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ └── MainController.java │ │ │ │ │ └── security │ │ │ │ │ └── AadWebSecurityConfig.java │ │ │ │ └── resources │ │ │ │ ├── application.yml │ │ │ │ └── static │ │ │ │ └── index.html │ │ └── terraform │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ └── setup_env.sh │ ├── aad-resource-server-by-filter │ │ ├── README.md │ │ ├── docs │ │ │ ├── add-permissions.png │ │ │ ├── application-registration-1.png │ │ │ ├── application-registration-2.png │ │ │ ├── create-secret.png │ │ │ ├── grant-admin-consent.png │ │ │ ├── secret-value.png │ │ │ └── tokens-to-accept.png │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── aad │ │ │ │ │ ├── AadIntegrationSpringBootAutoconfigureSampleApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ └── TodoListController.java │ │ │ │ │ ├── model │ │ │ │ │ └── TodoItem.java │ │ │ │ │ └── security │ │ │ │ │ └── WebSecurityConfig.java │ │ │ │ └── resources │ │ │ │ ├── application.yml │ │ │ │ ├── static │ │ │ │ └── App │ │ │ │ │ ├── Scripts │ │ │ │ │ ├── app.js │ │ │ │ │ ├── homeCtrl.js │ │ │ │ │ ├── indexCtrl.js │ │ │ │ │ ├── msal.js │ │ │ │ │ ├── msalModule.js │ │ │ │ │ ├── todoListCtrl.js │ │ │ │ │ ├── todoListSvc.js │ │ │ │ │ └── userDataCtrl.js │ │ │ │ │ └── Views │ │ │ │ │ ├── Home.html │ │ │ │ │ ├── TodoList.html │ │ │ │ │ └── UserData.html │ │ │ │ └── templates │ │ │ │ └── index.html │ │ └── terraform │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ └── setup_env.sh │ ├── aad-web-application-and-resource-server │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── aad │ │ │ │ ├── AadOAuth2WebAppAndResourceServerSampleApplication.java │ │ │ │ ├── config │ │ │ │ └── WebClientConfig.java │ │ │ │ ├── controller │ │ │ │ ├── webapi │ │ │ │ │ └── WebApiController.java │ │ │ │ └── webapp │ │ │ │ │ ├── AuthorityController.java │ │ │ │ │ ├── CallWebApiController.java │ │ │ │ │ ├── ClientController.java │ │ │ │ │ ├── OnDemandClientController.java │ │ │ │ │ └── RoleController.java │ │ │ │ ├── security │ │ │ │ ├── AadConditionalAccessFilter.java │ │ │ │ └── AadWebApplicationAndResourceServerConfig.java │ │ │ │ └── utils │ │ │ │ └── JsonMapper.java │ │ │ └── resources │ │ │ ├── application.yml │ │ │ └── templates │ │ │ └── index.html │ └── web-client-access-resource-server │ │ ├── README.md │ │ ├── aad-resource-server-obo │ │ ├── README.md │ │ ├── docs │ │ │ ├── image-aad-obo-flow-and-client-credential-flow.png │ │ │ ├── image-add-grant-admin-consent.png │ │ │ ├── image-add-permissions.png │ │ │ ├── image-resource-server-obo-add-scope.png │ │ │ └── image-select-myapis.png │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── aad │ │ │ │ ├── AadOAuth2ResourceServerOboSampleApplication.java │ │ │ │ ├── configuration │ │ │ │ └── AadSampleConfiguration.java │ │ │ │ └── controller │ │ │ │ └── SampleController.java │ │ │ └── resources │ │ │ └── application.yml │ │ ├── aad-resource-server │ │ ├── README.md │ │ ├── docs │ │ │ ├── image-add-a-scope.png │ │ │ ├── image-add-custom-apis-to-webapp.png │ │ │ ├── image-add-resource-server.png │ │ │ ├── image-creat-secrets-api.png │ │ │ ├── image-expose-api.png │ │ │ ├── image-final.png │ │ │ ├── image-granted-permission.png │ │ │ ├── image-protal-manage.png │ │ │ ├── image-register-a-web-api.png │ │ │ └── image-set-application-id-url.png │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── aad │ │ │ │ ├── AadOAuth2ResourceServerSampleApplication.java │ │ │ │ └── controller │ │ │ │ └── HomeController.java │ │ │ └── resources │ │ │ └── application.yml │ │ ├── aad-web-application │ │ ├── README.md │ │ ├── docs │ │ │ ├── image-add-a-platform.png │ │ │ ├── image-add-grant-admin-consent.png │ │ │ ├── image-add-permissions.png │ │ │ ├── image-create-app-secrets.png │ │ │ ├── image-permissions.png │ │ │ ├── image-portal-manage.png │ │ │ ├── image-register-a-web-app.png │ │ │ ├── image-request-api-permissions.png │ │ │ ├── image-secret-value.png │ │ │ └── image-select-myapis.png │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── aad │ │ │ │ ├── AadOAuth2WebAppSampleApplication.java │ │ │ │ ├── config │ │ │ │ └── WebClientConfig.java │ │ │ │ ├── controller │ │ │ │ ├── AuthorityController.java │ │ │ │ ├── ClientController.java │ │ │ │ ├── OnDemandClientController.java │ │ │ │ ├── RoleController.java │ │ │ │ └── WebApiController.java │ │ │ │ ├── security │ │ │ │ ├── AadConditionalAccessFilter.java │ │ │ │ └── AadWebApplicationConfig.java │ │ │ │ └── utils │ │ │ │ └── JsonMapper.java │ │ │ └── resources │ │ │ ├── application.yml │ │ │ └── templates │ │ │ └── index.html │ │ ├── pom.xml │ │ ├── run_all.ps1 │ │ ├── run_all.sh │ │ └── terraform │ │ ├── kill-port.ps1 │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ └── setup_env.sh └── spring-security │ ├── README.md │ ├── docs │ ├── README.md │ ├── homework-answers.md │ ├── reactive │ │ └── webflux │ │ │ └── oauth2 │ │ │ └── spring-cloud-gateway.md │ └── servlet │ │ └── oauth2 │ │ ├── client-access-multiple-resource-server.md │ │ ├── client-access-resource-server.md │ │ ├── login-authenticate-using-private-key-jwt.md │ │ ├── login.md │ │ ├── resource-server-check-permissions-by-claims-in-access-token.md │ │ └── resource-server-support-on-behalf-of-flow.md │ ├── reactive │ └── webflux │ │ └── oauth2 │ │ └── spring-cloud-gateway │ │ ├── README.md │ │ ├── client │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── activedirectory │ │ │ │ └── reactive │ │ │ │ └── webflux │ │ │ │ └── oauth2 │ │ │ │ └── gateway │ │ │ │ └── client │ │ │ │ ├── ClientApplication.java │ │ │ │ ├── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── SecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ ├── HomeController.java │ │ │ │ ├── ResourceServer1Controller.java │ │ │ │ └── ResourceServer2Controller.java │ │ │ └── resources │ │ │ └── application.yml │ │ ├── gateway │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── activedirectory │ │ │ │ └── reactive │ │ │ │ └── webflux │ │ │ │ └── oauth2 │ │ │ │ └── gateway │ │ │ │ └── gateway │ │ │ │ ├── GatewayApplication.java │ │ │ │ └── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── SecurityConfiguration.java │ │ │ └── resources │ │ │ └── application.yml │ │ ├── pom.xml │ │ ├── resource-server-1 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── activedirectory │ │ │ │ └── oauth2 │ │ │ │ └── gateway │ │ │ │ └── resourceserver1 │ │ │ │ ├── ResourceServer1Application.java │ │ │ │ ├── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── SecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ └── HomeController.java │ │ │ └── resources │ │ │ └── application.yml │ │ ├── resource-server-2 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── activedirectory │ │ │ │ └── reactive │ │ │ │ └── webflux │ │ │ │ └── oauth2 │ │ │ │ └── gateway │ │ │ │ └── resourceserver2 │ │ │ │ ├── ResourceServer2Application.java │ │ │ │ ├── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── SecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ └── HomeController.java │ │ │ └── resources │ │ │ └── application.yml │ │ ├── run_all.ps1 │ │ ├── run_all.sh │ │ └── terraform │ │ ├── kill-port.ps1 │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ └── setup_env.sh │ └── servlet │ └── oauth2 │ ├── client-access-multiple-resource-server │ ├── README.md │ ├── client │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── active │ │ │ │ └── directory │ │ │ │ └── oauth2 │ │ │ │ └── servlet │ │ │ │ └── sample03 │ │ │ │ └── client │ │ │ │ ├── ClientApplication.java │ │ │ │ ├── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── WebSecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ ├── HomeController.java │ │ │ │ ├── ResourceServer1Controller.java │ │ │ │ ├── ResourceServer2Controller.java │ │ │ │ └── ResourceServerAllController.java │ │ │ └── resources │ │ │ └── application.yml │ ├── pom.xml │ ├── resource-server-1 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── active │ │ │ │ └── directory │ │ │ │ └── oauth2 │ │ │ │ └── servlet │ │ │ │ └── sample03 │ │ │ │ └── resource │ │ │ │ └── server1 │ │ │ │ ├── ResourceServerApplication.java │ │ │ │ ├── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── WebSecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ └── HomeController.java │ │ │ └── resources │ │ │ └── application.yml │ ├── resource-server-2 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── active │ │ │ │ └── directory │ │ │ │ └── oauth2 │ │ │ │ └── servlet │ │ │ │ └── sample03 │ │ │ │ └── resource │ │ │ │ └── server2 │ │ │ │ ├── ResourceServerApplication.java │ │ │ │ ├── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── WebSecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ └── HomeController.java │ │ │ └── resources │ │ │ └── application.yml │ ├── run_all.ps1 │ ├── run_all.sh │ └── terraform │ │ ├── kill-port.ps1 │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ └── setup_env.sh │ ├── client-access-resource-server │ ├── README.md │ ├── client │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── active │ │ │ │ └── directory │ │ │ │ └── oauth2 │ │ │ │ └── servlet │ │ │ │ └── sample01 │ │ │ │ └── client │ │ │ │ ├── ClientApplication.java │ │ │ │ ├── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── WebSecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ ├── HomeController.java │ │ │ │ └── ResourceServerController.java │ │ │ └── resources │ │ │ └── application.yml │ ├── pom.xml │ ├── resource-server │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── active │ │ │ │ └── directory │ │ │ │ └── oauth2 │ │ │ │ └── servlet │ │ │ │ └── sample01 │ │ │ │ └── resource │ │ │ │ └── server │ │ │ │ ├── ResourceServerApplication.java │ │ │ │ ├── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── WebSecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ └── HomeController.java │ │ │ └── resources │ │ │ └── application.yml │ ├── run_all.ps1 │ ├── run_all.sh │ └── terraform │ │ ├── kill-port.ps1 │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ └── setup_env.sh │ ├── login-authenticate-using-private-key-jwt │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── reactive │ │ │ │ └── servlet │ │ │ │ └── oauth2 │ │ │ │ └── login │ │ │ │ └── jwt │ │ │ │ ├── SampleApplication.java │ │ │ │ ├── azure │ │ │ │ └── activedirectory │ │ │ │ │ ├── AzureActiveDirectoryAssertionException.java │ │ │ │ │ ├── AzureActiveDirectoryCertificateSignedJwtAssertionFactory.java │ │ │ │ │ └── AzureActiveDirectoryJwtClientAuthenticationParametersConverter.java │ │ │ │ ├── configuration │ │ │ │ └── WebSecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ └── HomeController.java │ │ └── resources │ │ │ └── application.yml │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── reactive │ │ │ └── servlet │ │ │ └── oauth2 │ │ │ └── login │ │ │ └── jwt │ │ │ ├── azure │ │ │ └── activedirectory │ │ │ │ └── AzureActiveDirectoryCertificateSignedAssertionFactoryTest.java │ │ │ └── configuration │ │ │ └── WebSecurityConfigurationTest.java │ │ └── resources │ │ ├── encrypted-private-key-and-certificate.pem │ │ └── encrypted-private-key-and-certificate.pfx │ ├── login │ ├── README.md │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── active │ │ │ │ └── directory │ │ │ │ └── oauth2 │ │ │ │ └── servlet │ │ │ │ └── sample00 │ │ │ │ ├── HomeController.java │ │ │ │ └── SampleApplication.java │ │ │ └── resources │ │ │ └── application.yml │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ └── setup_env.sh │ ├── resource-server-check-permissions-by-claims-in-access-token │ ├── README.md │ ├── client │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── active │ │ │ │ └── directory │ │ │ │ └── oauth2 │ │ │ │ └── servlet │ │ │ │ └── sample02 │ │ │ │ └── client │ │ │ │ ├── ClientApplication.java │ │ │ │ ├── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── WebSecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ ├── CheckPermissionByScopeController.java │ │ │ │ ├── HomeController.java │ │ │ │ └── ResourceServerController.java │ │ │ └── resources │ │ │ └── application.yml │ ├── pom.xml │ ├── resource-server │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── active │ │ │ │ └── directory │ │ │ │ └── oauth2 │ │ │ │ └── servlet │ │ │ │ └── sample02 │ │ │ │ └── resource │ │ │ │ └── server │ │ │ │ ├── ResourceServerApplication.java │ │ │ │ ├── configuration │ │ │ │ ├── ApplicationConfiguration.java │ │ │ │ └── WebSecurityConfiguration.java │ │ │ │ └── controller │ │ │ │ ├── CheckPermissionByRoleController.java │ │ │ │ ├── CheckPermissionByScopeController.java │ │ │ │ └── HomeController.java │ │ │ └── resources │ │ │ └── application.yml │ ├── run_all.ps1 │ ├── run_all.sh │ └── terraform │ │ ├── kill-port.ps1 │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ └── setup_env.sh │ └── resource-server-support-on-behalf-of-flow │ ├── README.md │ ├── client │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── active │ │ │ └── directory │ │ │ └── oauth2 │ │ │ └── servlet │ │ │ └── sample04 │ │ │ └── client │ │ │ ├── ClientApplication.java │ │ │ ├── configuration │ │ │ ├── ApplicationConfiguration.java │ │ │ └── WebSecurityConfiguration.java │ │ │ └── controller │ │ │ ├── HomeController.java │ │ │ └── ResourceServer1Controller.java │ │ └── resources │ │ └── application.yml │ ├── pom.xml │ ├── resource-server-1 │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── active │ │ │ └── directory │ │ │ └── oauth2 │ │ │ └── servlet │ │ │ └── sample04 │ │ │ └── resource │ │ │ └── server1 │ │ │ ├── ResourceServerApplication.java │ │ │ ├── configuration │ │ │ ├── AadJwtBearerGrantRequestEntityConverter.java │ │ │ ├── ApplicationConfiguration.java │ │ │ └── WebSecurityConfiguration.java │ │ │ └── controller │ │ │ ├── HomeController.java │ │ │ └── ResourceServer2Controller.java │ │ └── resources │ │ └── application.yml │ ├── resource-server-2 │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── active │ │ │ └── directory │ │ │ └── oauth2 │ │ │ └── servlet │ │ │ └── sample04 │ │ │ └── resource │ │ │ └── server2 │ │ │ ├── ResourceServerApplication.java │ │ │ ├── configuration │ │ │ ├── ApplicationConfiguration.java │ │ │ └── WebSecurityConfiguration.java │ │ │ └── controller │ │ │ └── HomeController.java │ │ └── resources │ │ └── application.yml │ ├── run_all.ps1 │ ├── run_all.sh │ └── terraform │ ├── kill-port.ps1 │ ├── main.tf │ ├── outputs.tf │ ├── setup_env.ps1 │ └── setup_env.sh ├── appconfiguration ├── spring-cloud-azure-appconfiguration-config │ ├── spring-cloud-azure-appconfiguration-config-convert-sample │ │ ├── README.md │ │ ├── spring-cloud-azure-appconfiguration-config-convert-sample-complete │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── sample │ │ │ │ │ └── convert │ │ │ │ │ ├── ConvertSampleApplication.java │ │ │ │ │ ├── User.java │ │ │ │ │ └── UserRepository.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── spring-cloud-azure-appconfiguration-config-convert-sample-initial │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── sample │ │ │ │ └── convert │ │ │ │ ├── ConvertSampleApplication.java │ │ │ │ ├── User.java │ │ │ │ └── UserRepository.java │ │ │ └── resources │ │ │ └── application.properties │ └── spring-cloud-azure-appconfiguration-config-sample │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ ├── AzureConfigApplication.java │ │ │ ├── BootstrapConfiguration.java │ │ │ ├── HelloController.java │ │ │ └── MessageProperties.java │ │ └── resources │ │ ├── application.yaml │ │ └── data │ │ └── sample-data.json ├── spring-cloud-azure-feature-management-web │ ├── spring-cloud-azure-feature-management-web-sample │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── FeatureFilter.java │ │ │ │ ├── FeatureManagerWebApplication.java │ │ │ │ ├── HelloController.java │ │ │ │ ├── MessageProperties.java │ │ │ │ ├── MyDisabledFeaturesHandler.java │ │ │ │ ├── TestComponent.java │ │ │ │ └── filters │ │ │ │ ├── ClientFilter.java │ │ │ │ └── Random.java │ │ │ └── resources │ │ │ ├── application.yml │ │ │ ├── data │ │ │ └── sample-data.yml │ │ │ ├── static │ │ │ └── css │ │ │ │ └── main.css │ │ │ └── templates │ │ │ ├── BetaA.html │ │ │ ├── BetaB.html │ │ │ ├── privacy.html │ │ │ └── welcome.html │ └── spring-cloud-azure-targeting-filter-web-sample │ │ ├── README.md │ │ ├── images │ │ ├── default-page.png │ │ └── page-with-included-user-id.png │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── demo │ │ │ ├── DemoApplication.java │ │ │ ├── configuration │ │ │ └── AppConfiguration.java │ │ │ ├── controllers │ │ │ └── HelloController.java │ │ │ └── impl │ │ │ └── TargetingContextImpl.java │ │ └── resources │ │ ├── application.yml │ │ ├── data │ │ └── sample-data.yml │ │ ├── static │ │ └── css │ │ │ └── main.css │ │ └── templates │ │ └── welcome.html ├── spring-cloud-azure-feature-management │ └── spring-cloud-azure-feature-management-sample │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ ├── ConsoleApplication.java │ │ │ └── Random.java │ │ └── resources │ │ ├── application.yml │ │ └── data │ │ └── sample-data.yml ├── spring-cloud-azure-starter-appconfiguration-config │ ├── spring-cloud-azure-starter-appconfiguration-config-entraid-sample │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── example │ │ │ │ ├── AppConfigClientCustomizer.java │ │ │ │ ├── AppConfiguration.java │ │ │ │ ├── Application.java │ │ │ │ ├── HelloController.java │ │ │ │ └── MessageProperties.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── spring.factories │ │ │ └── application.properties │ └── spring-cloud-azure-starter-appconfiguration-config-sample │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── example │ │ │ ├── Application.java │ │ │ ├── HelloController.java │ │ │ └── MessageProperties.java │ │ └── resources │ │ └── application.properties └── spring-cloud-azure-starter-appconfiguration │ └── appconfiguration-client │ ├── README.md │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── appconfiguration │ │ │ └── AppConfigurationClientApplication.java │ │ └── resources │ │ └── application.yml │ └── terraform │ ├── main.tf │ ├── outputs.tf │ ├── setup_env.ps1 │ ├── setup_env.sh │ └── variables.tf ├── cache ├── .gitignore ├── spring-cloud-azure-redis-sample-passwordless │ ├── README.md │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── cache │ │ │ │ ├── CachePasswordlessApplication.java │ │ │ │ └── WebController.java │ │ │ └── resources │ │ │ └── application.yaml │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf └── spring-cloud-azure-redis-sample │ ├── README.md │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── cache │ │ │ ├── CacheApplication.java │ │ │ └── WebController.java │ │ └── resources │ │ └── application.yaml │ └── terraform │ ├── main.tf │ ├── outputs.tf │ ├── setup_env.ps1 │ ├── setup_env.sh │ └── variables.tf ├── cosmos ├── .gitignore ├── azure-spring-data-cosmos │ ├── cosmos-aad-sample │ │ ├── README.md │ │ ├── media │ │ │ └── aad-app.png │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── data │ │ │ │ └── cosmos │ │ │ │ └── example │ │ │ │ ├── common │ │ │ │ └── User.java │ │ │ │ └── quickstart │ │ │ │ └── sync │ │ │ │ ├── CosmosProperties.java │ │ │ │ ├── SampleAppConfiguration.java │ │ │ │ ├── SampleAppConfigurationProd.java │ │ │ │ ├── SampleApplication.java │ │ │ │ └── UserRepository.java │ │ │ └── resources │ │ │ └── application.yaml │ ├── cosmos-multi-database-multi-account │ │ ├── README.md │ │ ├── pom.xml │ │ ├── resource │ │ │ ├── result-in-mysql.png │ │ │ ├── result-in-primary-cosmos-database.png │ │ │ └── result-in-secondary-cosmos-database.png │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── cosmos │ │ │ │ │ └── multi │ │ │ │ │ └── database │ │ │ │ │ └── multiple │ │ │ │ │ └── account │ │ │ │ │ ├── CosmosProperties.java │ │ │ │ │ ├── MultiDatabaseApplication.java │ │ │ │ │ ├── PrimaryDatasourceConfiguration.java │ │ │ │ │ ├── SecondaryDatasourceConfiguration.java │ │ │ │ │ └── repository │ │ │ │ │ ├── cosmos │ │ │ │ │ ├── CosmosUser.java │ │ │ │ │ └── CosmosUserRepository.java │ │ │ │ │ └── mysql │ │ │ │ │ ├── MysqlUser.java │ │ │ │ │ └── MysqlUserRepository.java │ │ │ │ └── resources │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ ├── cosmos-multi-database-single-account │ │ ├── README.md │ │ ├── pom.xml │ │ ├── resource │ │ │ ├── result-in-cosmos-database1.png │ │ │ └── result-in-cosmos-database2.png │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── cosmos │ │ │ │ │ └── multi │ │ │ │ │ └── database │ │ │ │ │ ├── CosmosProperties.java │ │ │ │ │ ├── DatasourceConfiguration.java │ │ │ │ │ ├── MultiDatabaseApplication.java │ │ │ │ │ ├── repository1 │ │ │ │ │ ├── User1.java │ │ │ │ │ └── User1Repository.java │ │ │ │ │ └── repository2 │ │ │ │ │ ├── User2.java │ │ │ │ │ └── User2Repository.java │ │ │ │ └── resources │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ ├── cosmos-multi-tenant-samples │ │ ├── multi-tenant-by-container │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── data │ │ │ │ │ └── cosmos │ │ │ │ │ └── example │ │ │ │ │ ├── AppConfiguration.java │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── CosmosProperties.java │ │ │ │ │ ├── HomeController.java │ │ │ │ │ ├── Order.java │ │ │ │ │ ├── OrderController.java │ │ │ │ │ ├── OrderRepository.java │ │ │ │ │ ├── User.java │ │ │ │ │ ├── UserController.java │ │ │ │ │ ├── UserRepository.java │ │ │ │ │ └── tenant │ │ │ │ │ ├── MultiTenantContainerCosmosFactory.java │ │ │ │ │ ├── TenantInterceptor.java │ │ │ │ │ ├── TenantStorage.java │ │ │ │ │ └── WebConfiguration.java │ │ │ │ └── resources │ │ │ │ └── application.yaml │ │ └── multi-tenant-by-database │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── data │ │ │ │ └── cosmos │ │ │ │ └── example │ │ │ │ ├── AppConfiguration.java │ │ │ │ ├── Application.java │ │ │ │ ├── CosmosProperties.java │ │ │ │ ├── HomeController.java │ │ │ │ ├── Order.java │ │ │ │ ├── OrderController.java │ │ │ │ ├── OrderRepository.java │ │ │ │ ├── User.java │ │ │ │ ├── UserController.java │ │ │ │ ├── UserRepository.java │ │ │ │ └── tenant │ │ │ │ ├── MultiTenantDBCosmosFactory.java │ │ │ │ ├── TenantInterceptor.java │ │ │ │ ├── TenantStorage.java │ │ │ │ └── WebConfiguration.java │ │ │ └── resources │ │ │ └── application.yaml │ ├── cosmos-mvc-sample │ │ ├── BookStore.png │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── data │ │ │ │ │ └── cosmos │ │ │ │ │ └── sample │ │ │ │ │ └── ebookstore │ │ │ │ │ ├── EBookStoreApplication.java │ │ │ │ │ ├── Session │ │ │ │ │ └── SessionConfig.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── cart │ │ │ │ │ │ └── CartController.java │ │ │ │ │ ├── customer │ │ │ │ │ │ ├── CustomerController.java │ │ │ │ │ │ └── CustomerForm.java │ │ │ │ │ ├── home │ │ │ │ │ │ └── HomeController.java │ │ │ │ │ └── order │ │ │ │ │ │ ├── CheckOutForm.java │ │ │ │ │ │ ├── OrderController.java │ │ │ │ │ │ ├── OrderForm.java │ │ │ │ │ │ └── OrderHelper.java │ │ │ │ │ ├── cosmos │ │ │ │ │ ├── BookRepositoryLoader.java │ │ │ │ │ ├── CosmosProperties.java │ │ │ │ │ └── StoreCosmosConfiguration.java │ │ │ │ │ ├── model │ │ │ │ │ ├── book │ │ │ │ │ │ ├── Book.java │ │ │ │ │ │ ├── BookRepository.java │ │ │ │ │ │ ├── BookRepositoryAsync.java │ │ │ │ │ │ └── Response.java │ │ │ │ │ ├── cart │ │ │ │ │ │ ├── Cart.java │ │ │ │ │ │ ├── CartItem.java │ │ │ │ │ │ ├── CartRepository.java │ │ │ │ │ │ ├── CartService.java │ │ │ │ │ │ └── DefaultCartService.java │ │ │ │ │ ├── customer │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── Contact.java │ │ │ │ │ │ ├── CreditCard.java │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ ├── CustomerRepository.java │ │ │ │ │ │ └── Name.java │ │ │ │ │ └── order │ │ │ │ │ │ ├── LineItem.java │ │ │ │ │ │ ├── Order.java │ │ │ │ │ │ └── OrderRepository.java │ │ │ │ │ └── security │ │ │ │ │ ├── CustomerDetailService.java │ │ │ │ │ ├── EBookStoreUserDetails.java │ │ │ │ │ └── WebSecurityConfig.java │ │ │ └── resources │ │ │ │ ├── application.yaml │ │ │ │ ├── logback.xml │ │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── login.css │ │ │ │ │ ├── responsive.css │ │ │ │ │ ├── responsive.css.map │ │ │ │ │ ├── ui.css │ │ │ │ │ └── ui.css.map │ │ │ │ ├── fonts │ │ │ │ │ ├── fontawesome │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── fa-brands.css │ │ │ │ │ │ │ ├── fa-brands.min.css │ │ │ │ │ │ │ ├── fa-regular.css │ │ │ │ │ │ │ ├── fa-regular.min.css │ │ │ │ │ │ │ ├── fa-solid.css │ │ │ │ │ │ │ ├── fa-solid.min.css │ │ │ │ │ │ │ ├── fontawesome-all.css │ │ │ │ │ │ │ ├── fontawesome-all.min.css │ │ │ │ │ │ │ ├── fontawesome.css │ │ │ │ │ │ │ └── fontawesome.min.css │ │ │ │ │ │ ├── scss │ │ │ │ │ │ │ ├── _animated.scss │ │ │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ │ │ ├── _core.scss │ │ │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ │ │ ├── _icons.scss │ │ │ │ │ │ │ ├── _larger.scss │ │ │ │ │ │ │ ├── _list.scss │ │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ │ ├── fa-brands.scss │ │ │ │ │ │ │ ├── fa-regular.scss │ │ │ │ │ │ │ ├── fa-solid.scss │ │ │ │ │ │ │ └── fontawesome.scss │ │ │ │ │ │ └── webfonts │ │ │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ │ │ ├── material-icons │ │ │ │ │ │ ├── MaterialIcons-Regular.eot │ │ │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ │ │ ├── MaterialIcons-Regular.woff2 │ │ │ │ │ │ └── material-icons.css │ │ │ │ │ └── roboto │ │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ │ │ └── font.css │ │ │ │ ├── images │ │ │ │ │ ├── AzureAD.jpg │ │ │ │ │ ├── AzureSQL.jpg │ │ │ │ │ ├── CassandraDefinitiveguide.jpg │ │ │ │ │ ├── CleanCode.jpg │ │ │ │ │ ├── DockerInPractice.jpg │ │ │ │ │ ├── DockerNetworking.jpg │ │ │ │ │ ├── ElasticSearchInAction.jpg │ │ │ │ │ ├── GoInPractice.jpg │ │ │ │ │ ├── GraphAlgorithms.jpg │ │ │ │ │ ├── GuideToGraphDatabases.jpg │ │ │ │ │ ├── JavaConcurrency.jpg │ │ │ │ │ ├── Kubernetes.jpg │ │ │ │ │ ├── ProgrammingInRuby.jpg │ │ │ │ │ ├── RustProgrammingLanguage.jpg │ │ │ │ │ ├── Scala.jpg │ │ │ │ │ ├── ServiceFabric.jpg │ │ │ │ │ ├── SevenDatabasesInSevenWeeks.jpg │ │ │ │ │ ├── SpringMicroServices.jpg │ │ │ │ │ ├── blackHatGo.jpg │ │ │ │ │ ├── csharpInANutshell.jpg │ │ │ │ │ ├── dataIntensiveApplication.jpg │ │ │ │ │ ├── effectivejava.jpg │ │ │ │ │ ├── getProgrammingWithGo.jpg │ │ │ │ │ ├── highPerformaceMysql.jpg │ │ │ │ │ ├── kaafkDefnitiveGuide.jpg │ │ │ │ │ ├── masterring-kotlin.jpg │ │ │ │ │ ├── mongodb.jpg │ │ │ │ │ ├── node-design-patterns.jpg │ │ │ │ │ ├── nodeCookBook.jpg │ │ │ │ │ ├── patternsOfEAA.jpg │ │ │ │ │ ├── pragmaticProgrammer.jpg │ │ │ │ │ ├── programmingcsharp8.0.jpg │ │ │ │ │ ├── rabbitMQCookBook.jpg │ │ │ │ │ ├── softwareArchitect.jpg │ │ │ │ │ └── unitTesting.jpg │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── createaccount.js │ │ │ │ │ └── jquery-2.0.0.min.js │ │ │ │ └── plugins │ │ │ │ │ ├── fancybox │ │ │ │ │ ├── fancybox.min.css │ │ │ │ │ ├── fancybox.min.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── owlcarousel │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ │ ├── owl.carousel.css │ │ │ │ │ │ ├── owl.carousel.min.css │ │ │ │ │ │ ├── owl.theme.default.css │ │ │ │ │ │ ├── owl.theme.default.min.css │ │ │ │ │ │ ├── owl.theme.green.css │ │ │ │ │ │ ├── owl.theme.green.min.css │ │ │ │ │ │ └── owl.video.play.png │ │ │ │ │ ├── owl.carousel.js │ │ │ │ │ └── owl.carousel.min.js │ │ │ │ │ ├── prism │ │ │ │ │ ├── prism.css │ │ │ │ │ └── prism.js │ │ │ │ │ └── slickslider │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── fonts │ │ │ │ │ ├── slick.eot │ │ │ │ │ ├── slick.svg │ │ │ │ │ ├── slick.ttf │ │ │ │ │ └── slick.woff │ │ │ │ │ ├── slick-theme.css │ │ │ │ │ ├── slick.css │ │ │ │ │ ├── slick.js │ │ │ │ │ └── slick.min.js │ │ │ │ └── templates │ │ │ │ ├── cart.html │ │ │ │ ├── checkout.html │ │ │ │ ├── create-account.html │ │ │ │ ├── index.html │ │ │ │ ├── login.html │ │ │ │ ├── orderconfirmation.html │ │ │ │ └── orders.html │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── spring │ │ │ └── cosmos │ │ │ └── ebookstore │ │ │ └── StoreApplicationTests.java │ └── cosmos-quickstart-samples │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── data │ │ │ └── cosmos │ │ │ └── samples │ │ │ ├── common │ │ │ └── User.java │ │ │ ├── featureexamples │ │ │ └── Pagination.java │ │ │ └── quickstart │ │ │ ├── CosmosProperties.java │ │ │ ├── ReactiveUserRepository.java │ │ │ ├── SampleAppConfiguration.java │ │ │ ├── SampleApplication.java │ │ │ └── UserRepository.java │ │ └── resources │ │ └── application.yaml ├── spring-cloud-azure-starter-cosmos │ └── spring-cloud-azure-cosmos-sample │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── cosmos │ │ │ │ ├── CosmosSampleApplication.java │ │ │ │ └── common │ │ │ │ ├── Address.java │ │ │ │ ├── Child.java │ │ │ │ ├── Family.java │ │ │ │ ├── Parent.java │ │ │ │ └── Pet.java │ │ │ └── resources │ │ │ └── application.yml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf └── spring-cloud-azure-starter-data-cosmos │ └── spring-cloud-azure-data-cosmos-sample │ ├── README.md │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── cosmos │ │ │ ├── CosmosSampleApplication.java │ │ │ ├── User.java │ │ │ └── UserRepository.java │ │ └── resources │ │ └── application.yml │ └── terraform │ ├── main.tf │ ├── outputs.tf │ ├── setup_env.ps1 │ ├── setup_env.sh │ └── variables.tf ├── create-sp-using-azure-cli.md ├── eventgrid └── spring-cloud-azure-starter-eventgrid │ └── spring-cloud-azure-sample-eventgrid │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── com │ │ └── azure │ │ └── spring │ │ └── sample │ │ └── eventgrid │ │ ├── EventGridController.java │ │ └── EventGridSampleApplication.java │ └── resources │ └── application.yaml ├── eventhubs ├── spring-cloud-azure-starter-eventhubs │ └── eventhubs-client │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── eventhubs │ │ │ │ └── client │ │ │ │ └── EventHubClientApplication.java │ │ │ └── resources │ │ │ └── application.yaml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf ├── spring-cloud-azure-starter-integration-eventhubs │ └── eventhubs-integration │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── eventhubs │ │ │ │ ├── EventHubIntegrationApplication.java │ │ │ │ ├── EventHubIntegrationConfiguration.java │ │ │ │ ├── ReceiveService.java │ │ │ │ └── SendController.java │ │ │ └── resources │ │ │ └── application.yaml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf ├── spring-cloud-azure-starter │ └── spring-cloud-azure-sample-eventhubs-kafka │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── eventhubs │ │ │ │ └── kafka │ │ │ │ ├── EventHubKafkaBinderApplication.java │ │ │ │ └── SourceExample.java │ │ │ └── resources │ │ │ ├── application-rm.yaml │ │ │ └── application.yaml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf ├── spring-cloud-azure-stream-binder-eventhubs │ ├── eventhubs-binder │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── eventhubs │ │ │ │ │ └── binder │ │ │ │ │ ├── BatchProducerAndConsumerConfiguration.java │ │ │ │ │ ├── DefaultProducerAndConsumerConfiguration.java │ │ │ │ │ ├── EventHubBinderApplication.java │ │ │ │ │ ├── ImperativeEventProducerController.java │ │ │ │ │ ├── ManualProducerAndConsumerConfiguration.java │ │ │ │ │ └── ReactiveEventProducerController.java │ │ │ │ └── resources │ │ │ │ ├── application-batch.yaml │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ └── eventhubs-multibinders │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── eventhubs │ │ │ │ └── multibinders │ │ │ │ ├── EventHubMultiBindersApplication.java │ │ │ │ ├── EventProducerConfiguration.java │ │ │ │ ├── EventProducerController.java │ │ │ │ └── ManualEventProducerConfiguration.java │ │ │ └── resources │ │ │ └── application.yaml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf └── spring-messaging-azure-eventhubs │ └── eventhubs-spring-messaging │ ├── README.md │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── eventhubs │ │ │ └── messaging │ │ │ ├── ConsumerService.java │ │ │ └── EventHubMessagingApplication.java │ │ └── resources │ │ └── application.yaml │ └── terraform │ ├── main.tf │ ├── outputs.tf │ ├── setup_env.ps1 │ ├── setup_env.sh │ └── variables.tf ├── keyvault ├── azure-securtiy-keyvault-jca │ ├── README.md │ ├── run-with-command-line-client-side │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── web │ │ │ └── client │ │ │ └── SampleClient.java │ └── run-with-command-line-server-side │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── boot │ │ │ └── sample │ │ │ └── webapp │ │ │ ├── SampleController.java │ │ │ └── SpringBootWebappApplication.java │ │ └── resources │ │ └── keyvault.dummy ├── spring-cloud-azure-starter-keyvault-jca │ ├── README.md │ ├── ssl-bundles-rest-template │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── keyvault │ │ │ │ │ └── jca │ │ │ │ │ ├── RestTemplateConfiguration.java │ │ │ │ │ ├── RestTemplateController.java │ │ │ │ │ └── SslBundlesRestTemplateApplication.java │ │ │ │ └── resources │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ ├── ssl-bundles-server │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── keyvault │ │ │ │ │ └── jca │ │ │ │ │ ├── KeyVaultSslBundlesServerApplication.java │ │ │ │ │ ├── WebConfiguration.java │ │ │ │ │ └── WebController.java │ │ │ │ └── resources │ │ │ │ ├── application-client-auth.yaml │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ └── ssl-bundles-web-client │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── keyvault │ │ │ │ └── jca │ │ │ │ ├── KeyVaultSslBundlesWebClientApplication.java │ │ │ │ ├── WebClientConfiguration.java │ │ │ │ └── WebClientController.java │ │ │ └── resources │ │ │ └── application.yaml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf └── spring-cloud-azure-starter-keyvault-secrets │ ├── property-source │ ├── README.md │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── keyvault │ │ │ │ └── secrets │ │ │ │ └── sample │ │ │ │ └── single │ │ │ │ └── property │ │ │ │ └── source │ │ │ │ └── PropertySourceApplication.java │ │ │ └── resources │ │ │ ├── application-secrets.yml │ │ │ └── application.yml │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf │ └── secret-client │ ├── README.md │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── keyvault │ │ │ └── secrets │ │ │ └── sample │ │ │ └── secret │ │ │ └── client │ │ │ └── SecretClientApplication.java │ │ └── resources │ │ └── application.yml │ └── terraform │ ├── main.tf │ ├── outputs.tf │ ├── setup_env.ps1 │ ├── setup_env.sh │ └── variables.tf ├── mysql └── spring-cloud-azure-starter-jdbc-mysql │ └── spring-cloud-azure-mysql-sample │ ├── README.md │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── passwordless │ │ │ └── mysql │ │ │ ├── MysqlApplication.java │ │ │ ├── Todo.java │ │ │ ├── TodoController.java │ │ │ └── TodoRepository.java │ │ └── resources │ │ └── application.yml │ └── terraform │ ├── main.tf │ ├── mysql_create_user.sql │ ├── outputs.tf │ ├── set_up_azure_ad_user.ps1 │ ├── set_up_azure_ad_user.sh │ ├── setup_env.ps1 │ ├── setup_env.sh │ └── variables.tf ├── pom.xml ├── postgresql └── spring-cloud-azure-starter-jdbc-postgresql │ └── spring-cloud-azure-postgresql-sample │ ├── README.md │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── passwordless │ │ │ └── postgresql │ │ │ ├── PostgresqlApplication.java │ │ │ ├── Todo.java │ │ │ ├── TodoController.java │ │ │ └── TodoRepository.java │ │ └── resources │ │ └── application.yml │ └── terraform │ ├── create_non_admin_user.ps1 │ ├── create_non_admin_user.sh │ ├── main.tf │ ├── outputs.tf │ ├── postgresql_create_user.sql │ ├── setup_env.ps1 │ ├── setup_env.sh │ └── variables.tf ├── servicebus ├── spring-cloud-azure-starter-integration-servicebus │ ├── multiple-namespaces │ │ ├── README.md │ │ ├── migration-guide.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── servicebus │ │ │ │ │ ├── CustomizedServiceBusProperties.java │ │ │ │ │ ├── IntegrationFlowConfiguration.java │ │ │ │ │ ├── MultipleAzureServiceBusNamespacesConfiguration.java │ │ │ │ │ └── ServiceBusIntegrationApplication.java │ │ │ │ └── resources │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ └── single-namespace │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── servicebus │ │ │ │ ├── QueueReceiveController.java │ │ │ │ ├── QueueSendController.java │ │ │ │ ├── ServiceBusIntegrationApplication.java │ │ │ │ ├── TopicReceiveController.java │ │ │ │ └── TopicSendController.java │ │ │ └── resources │ │ │ └── application.yaml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf ├── spring-cloud-azure-starter-servicebus-jms │ ├── servicebus-jms-dlq-queue │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── jms │ │ │ │ │ └── queue │ │ │ │ │ ├── QueueReceiveService.java │ │ │ │ │ ├── QueueSendController.java │ │ │ │ │ ├── ServiceBusJmsDlqQueueApplication.java │ │ │ │ │ └── User.java │ │ │ │ └── resources │ │ │ │ ├── application.yaml │ │ │ │ └── log4j.properties │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ ├── servicebus-jms-queue │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── jms │ │ │ │ │ └── queue │ │ │ │ │ ├── QueueReceiveService.java │ │ │ │ │ ├── QueueSendController.java │ │ │ │ │ ├── ServiceBusJMSQueueApplication.java │ │ │ │ │ └── User.java │ │ │ │ └── resources │ │ │ │ ├── application.yaml │ │ │ │ └── log4j.properties │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ └── servicebus-jms-topic │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── jms │ │ │ │ └── topic │ │ │ │ ├── ServiceBusJMSTopicApplication.java │ │ │ │ ├── TopicReceiveService.java │ │ │ │ ├── TopicSendController.java │ │ │ │ └── User.java │ │ │ └── resources │ │ │ ├── application.yaml │ │ │ └── log4j.properties │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf ├── spring-cloud-azure-starter-servicebus │ ├── servicebus-queue │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── jms │ │ │ │ │ └── queue │ │ │ │ │ ├── ServiceBusProcessorClientConfiguration.java │ │ │ │ │ └── ServiceBusQueueApplication.java │ │ │ │ └── resources │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ └── servicebus-topic │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── jms │ │ │ │ └── topic │ │ │ │ ├── ServiceBusProcessorClientConfiguration.java │ │ │ │ └── ServiceBusTopicApplication.java │ │ │ └── resources │ │ │ └── application.yaml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf ├── spring-cloud-azure-stream-binder-servicebus │ ├── servicebus-multibinders │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── servicebus │ │ │ │ │ └── queue │ │ │ │ │ └── multibinders │ │ │ │ │ ├── ManualServiceProducerConfiguration.java │ │ │ │ │ ├── ServiceBusQueueMultiBindersApplication.java │ │ │ │ │ ├── ServiceProducerConfiguration.java │ │ │ │ │ └── ServiceProducerController.java │ │ │ │ └── resources │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ ├── servicebus-queue-binder-arm │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── servicebus │ │ │ │ │ └── queue │ │ │ │ │ └── binder │ │ │ │ │ └── arm │ │ │ │ │ ├── ServiceBusQueueBinderArmApplication.java │ │ │ │ │ └── ServiceProducerConfiguration.java │ │ │ │ └── resources │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ ├── servicebus-queue-binder │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── servicebus │ │ │ │ │ └── queue │ │ │ │ │ └── binder │ │ │ │ │ ├── ManualServiceProducerConfiguration.java │ │ │ │ │ ├── ServiceBusQueueBinderApplication.java │ │ │ │ │ ├── ServiceProducerConfiguration.java │ │ │ │ │ └── ServiceProducerController.java │ │ │ │ └── resources │ │ │ │ ├── application-rm.yaml │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ └── servicebus-topic-binder │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── servicebus │ │ │ │ └── topic │ │ │ │ └── binder │ │ │ │ ├── ManualServiceProducerConfiguration.java │ │ │ │ ├── ServiceBusTopicBinderApplication.java │ │ │ │ ├── ServiceProducerConfiguration.java │ │ │ │ └── ServiceProducerController.java │ │ │ └── resources │ │ │ ├── application-rm.yaml │ │ │ └── application.yaml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf └── spring-messaging-azure-servicebus │ └── servicebus-spring-messaging │ ├── README.md │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── servicebus │ │ │ └── messaging │ │ │ ├── ConsumerService.java │ │ │ └── ServiceBusMessagingApplication.java │ │ └── resources │ │ └── application.yaml │ └── terraform │ ├── main.tf │ ├── outputs.tf │ ├── setup_env.ps1 │ ├── setup_env.sh │ └── variables.tf ├── storage ├── spring-cloud-azure-starter-integration-storage-queue │ ├── storage-queue-integration │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── azure │ │ │ │ │ └── spring │ │ │ │ │ └── sample │ │ │ │ │ └── storage │ │ │ │ │ └── queue │ │ │ │ │ ├── ReceiveService.java │ │ │ │ │ ├── SendController.java │ │ │ │ │ └── StorageQueueIntegrationApplication.java │ │ │ │ └── resources │ │ │ │ └── application.yaml │ │ └── terraform │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── setup_env.ps1 │ │ │ ├── setup_env.sh │ │ │ └── variables.tf │ └── storage-queue-operation │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── storage │ │ │ │ └── queue │ │ │ │ └── operation │ │ │ │ ├── StorageQueueOperationApplication.java │ │ │ │ └── WebController.java │ │ │ └── resources │ │ │ └── application.yaml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf ├── spring-cloud-azure-starter-storage-blob │ └── storage-blob-sample │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── storage │ │ │ │ └── resource │ │ │ │ ├── BlobController.java │ │ │ │ ├── SampleDataInitializer.java │ │ │ │ └── StorageBlobApplication.java │ │ │ └── resources │ │ │ └── application.yml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf ├── spring-cloud-azure-starter-storage-file-share │ └── storage-file-sample │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── storage │ │ │ │ └── resource │ │ │ │ ├── FileController.java │ │ │ │ ├── SampleDataInitializer.java │ │ │ │ └── StorageFileShareApplication.java │ │ │ └── resources │ │ │ └── application.yml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf ├── spring-cloud-azure-starter-storage-queue │ └── storage-queue-client │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── azure │ │ │ │ └── spring │ │ │ │ └── sample │ │ │ │ └── storage │ │ │ │ └── queue │ │ │ │ └── StorageQueueClientApplication.java │ │ │ └── resources │ │ │ └── application.yaml │ │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ ├── setup_env.ps1 │ │ ├── setup_env.sh │ │ └── variables.tf └── spring-messaging-azure-storage-queue │ └── storage-queue-spring-messaging │ ├── README.md │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── azure │ │ │ └── spring │ │ │ └── sample │ │ │ └── storage │ │ │ └── queue │ │ │ └── messaging │ │ │ └── StorageQueueMessagingApplication.java │ │ └── resources │ │ └── application.yml │ └── terraform │ ├── main.tf │ ├── outputs.tf │ ├── setup_env.ps1 │ ├── setup_env.sh │ └── variables.tf └── testcontainers ├── README.md ├── spring-cloud-azure-testcontainers-for-cosmos-sample ├── pom.xml └── src │ └── test │ └── java │ └── CosmosTestcontainersTest.java ├── spring-cloud-azure-testcontainers-for-storage-blob-sample ├── pom.xml └── src │ └── test │ └── java │ └── StorageBlobTestcontainersTest.java └── spring-cloud-azure-testcontainers-for-storage-queue-sample ├── pom.xml └── src └── test └── java └── StorageQueueTestcontainersTest.java /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-query-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/ISSUE_TEMPLATE/question-query-template.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/.linkspector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/workflows/.linkspector.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/markdown-link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/workflows/markdown-link-check.yml -------------------------------------------------------------------------------- /.github/workflows/sync-label-from-azsdk-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.github/workflows/sync-label-from-azsdk-repo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-add-application-roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-add-application-roles.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-add-user-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-add-user-flow.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-expose-an-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-expose-an-api.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-final-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-final-configuration.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-select-a-user-flow-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-select-a-user-flow-type.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-selected-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-selected-application.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-user-flow-finally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/docs/image-user-flow-finally.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/pom.xml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-resource-server/src/main/resources/application.yml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-web-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-web-application/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-web-application/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-web-application/pom.xml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-web-application/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-web-application/src/main/resources/application.yml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-web-application/src/main/resources/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory-b2c/aad-b2c-web-application/src/main/resources/templates/home.html -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/docs/demo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/docs/demo.webp -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/pom.xml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/terraform/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/terraform/main.tf -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/terraform/outputs.tf -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter-stateless/terraform/setup_env.sh -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/add-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/add-permissions.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/application-registration-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/application-registration-1.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/application-registration-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/application-registration-2.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/create-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/create-secret.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/grant-admin-consent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/grant-admin-consent.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/secret-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/secret-value.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/tokens-to-accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/docs/tokens-to-accept.png -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/pom.xml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/src/main/resources/application.yml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/terraform/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/terraform/main.tf -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/terraform/outputs.tf -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-resource-server-by-filter/terraform/setup_env.sh -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-web-application-and-resource-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-web-application-and-resource-server/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/aad-web-application-and-resource-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/aad-web-application-and-resource-server/pom.xml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-resource-server-obo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-resource-server-obo/pom.xml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-resource-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-resource-server/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-resource-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-resource-server/pom.xml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-web-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-web-application/README.md -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-web-application/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/aad-web-application/pom.xml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/pom.xml -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/run_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/run_all.ps1 -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/run_all.sh -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/terraform/kill-port.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/terraform/kill-port.ps1 -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/terraform/main.tf -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/terraform/outputs.tf -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-cloud-azure-starter-active-directory/web-client-access-resource-server/terraform/setup_env.sh -------------------------------------------------------------------------------- /aad/spring-security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/README.md -------------------------------------------------------------------------------- /aad/spring-security/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/docs/README.md -------------------------------------------------------------------------------- /aad/spring-security/docs/homework-answers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/docs/homework-answers.md -------------------------------------------------------------------------------- /aad/spring-security/docs/reactive/webflux/oauth2/spring-cloud-gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/docs/reactive/webflux/oauth2/spring-cloud-gateway.md -------------------------------------------------------------------------------- /aad/spring-security/docs/servlet/oauth2/client-access-multiple-resource-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/docs/servlet/oauth2/client-access-multiple-resource-server.md -------------------------------------------------------------------------------- /aad/spring-security/docs/servlet/oauth2/client-access-resource-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/docs/servlet/oauth2/client-access-resource-server.md -------------------------------------------------------------------------------- /aad/spring-security/docs/servlet/oauth2/login-authenticate-using-private-key-jwt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/docs/servlet/oauth2/login-authenticate-using-private-key-jwt.md -------------------------------------------------------------------------------- /aad/spring-security/docs/servlet/oauth2/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/docs/servlet/oauth2/login.md -------------------------------------------------------------------------------- /aad/spring-security/docs/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/docs/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token.md -------------------------------------------------------------------------------- /aad/spring-security/docs/servlet/oauth2/resource-server-support-on-behalf-of-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/docs/servlet/oauth2/resource-server-support-on-behalf-of-flow.md -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/README.md -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/client/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/client/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/client/src/main/resources/application.yml -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/gateway/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/gateway/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/gateway/src/main/resources/application.yml -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/resource-server-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/resource-server-1/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/resource-server-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/resource-server-2/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/run_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/run_all.ps1 -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/run_all.sh -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/terraform/kill-port.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/terraform/kill-port.ps1 -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/terraform/main.tf -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/terraform/outputs.tf -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/reactive/webflux/oauth2/spring-cloud-gateway/terraform/setup_env.sh -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/README.md -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/client/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/resource-server-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/resource-server-1/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/resource-server-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/resource-server-2/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/run_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/run_all.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/run_all.sh -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/terraform/kill-port.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/terraform/kill-port.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/terraform/main.tf -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/terraform/outputs.tf -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-multiple-resource-server/terraform/setup_env.sh -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/README.md -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/client/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/client/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/client/src/main/resources/application.yml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/resource-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/resource-server/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/run_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/run_all.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/run_all.sh -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/terraform/kill-port.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/terraform/kill-port.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/terraform/main.tf -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/terraform/outputs.tf -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/client-access-resource-server/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/client-access-resource-server/terraform/setup_env.sh -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/login-authenticate-using-private-key-jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/login-authenticate-using-private-key-jwt/README.md -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/login-authenticate-using-private-key-jwt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/login-authenticate-using-private-key-jwt/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/login-authenticate-using-private-key-jwt/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/login-authenticate-using-private-key-jwt/src/main/resources/application.yml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/login/README.md -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/login/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/login/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/login/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/login/src/main/resources/application.yml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/login/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/login/terraform/main.tf -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/login/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/login/terraform/outputs.tf -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/login/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/login/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/login/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/login/terraform/setup_env.sh -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/README.md -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/client/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/run_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/run_all.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/run_all.sh -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-check-permissions-by-claims-in-access-token/terraform/main.tf -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/README.md -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/client/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/resource-server-1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/resource-server-1/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/resource-server-2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/resource-server-2/pom.xml -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/run_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/run_all.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/run_all.sh -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/terraform/kill-port.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/terraform/kill-port.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/terraform/main.tf -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/terraform/outputs.tf -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/aad/spring-security/servlet/oauth2/resource-server-support-on-behalf-of-flow/terraform/setup_env.sh -------------------------------------------------------------------------------- /appconfiguration/spring-cloud-azure-feature-management-web/spring-cloud-azure-targeting-filter-web-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/appconfiguration/spring-cloud-azure-feature-management-web/spring-cloud-azure-targeting-filter-web-sample/pom.xml -------------------------------------------------------------------------------- /appconfiguration/spring-cloud-azure-feature-management/spring-cloud-azure-feature-management-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/appconfiguration/spring-cloud-azure-feature-management/spring-cloud-azure-feature-management-sample/README.md -------------------------------------------------------------------------------- /appconfiguration/spring-cloud-azure-feature-management/spring-cloud-azure-feature-management-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/appconfiguration/spring-cloud-azure-feature-management/spring-cloud-azure-feature-management-sample/pom.xml -------------------------------------------------------------------------------- /appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/README.md -------------------------------------------------------------------------------- /appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/pom.xml -------------------------------------------------------------------------------- /appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/terraform/main.tf -------------------------------------------------------------------------------- /appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/terraform/outputs.tf -------------------------------------------------------------------------------- /appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/terraform/setup_env.sh -------------------------------------------------------------------------------- /appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/appconfiguration/spring-cloud-azure-starter-appconfiguration/appconfiguration-client/terraform/variables.tf -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample-passwordless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample-passwordless/README.md -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample-passwordless/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample-passwordless/pom.xml -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample-passwordless/src/main/java/com/azure/spring/sample/cache/WebController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample-passwordless/src/main/java/com/azure/spring/sample/cache/WebController.java -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample-passwordless/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample-passwordless/src/main/resources/application.yaml -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample-passwordless/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample-passwordless/terraform/main.tf -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample-passwordless/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample-passwordless/terraform/outputs.tf -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample-passwordless/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample-passwordless/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample-passwordless/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample-passwordless/terraform/setup_env.sh -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample-passwordless/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample-passwordless/terraform/variables.tf -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample/README.md -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample/pom.xml -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample/src/main/java/com/azure/spring/sample/cache/CacheApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample/src/main/java/com/azure/spring/sample/cache/CacheApplication.java -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample/src/main/java/com/azure/spring/sample/cache/WebController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample/src/main/java/com/azure/spring/sample/cache/WebController.java -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample/src/main/resources/application.yaml -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample/terraform/main.tf -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample/terraform/outputs.tf -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample/terraform/setup_env.sh -------------------------------------------------------------------------------- /cache/spring-cloud-azure-redis-sample/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cache/spring-cloud-azure-redis-sample/terraform/variables.tf -------------------------------------------------------------------------------- /cosmos/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-aad-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-aad-sample/README.md -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-aad-sample/media/aad-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-aad-sample/media/aad-app.png -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-aad-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-aad-sample/pom.xml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-aad-sample/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-aad-sample/src/main/resources/application.yaml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/README.md -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/pom.xml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/resource/result-in-mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/resource/result-in-mysql.png -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/resource/result-in-primary-cosmos-database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/resource/result-in-primary-cosmos-database.png -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/src/main/resources/application.yaml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/terraform/main.tf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/terraform/outputs.tf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/terraform/setup_env.sh -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-multi-account/terraform/variables.tf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/README.md -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/pom.xml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/resource/result-in-cosmos-database1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/resource/result-in-cosmos-database1.png -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/resource/result-in-cosmos-database2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/resource/result-in-cosmos-database2.png -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/src/main/resources/application.yaml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/terraform/main.tf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/terraform/outputs.tf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/terraform/setup_env.sh -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-database-single-account/terraform/variables.tf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-tenant-samples/multi-tenant-by-container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-tenant-samples/multi-tenant-by-container/README.md -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-tenant-samples/multi-tenant-by-container/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-tenant-samples/multi-tenant-by-container/pom.xml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-tenant-samples/multi-tenant-by-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-tenant-samples/multi-tenant-by-database/README.md -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-multi-tenant-samples/multi-tenant-by-database/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-multi-tenant-samples/multi-tenant-by-database/pom.xml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/BookStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/BookStore.png -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/README.md -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/pom.xml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/application.yaml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/logback.xml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/bootstrap.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/login.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/responsive.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/responsive.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/responsive.css.map -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/ui.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/css/ui.css.map -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/css/fa-brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/css/fa-brands.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/css/fa-regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/css/fa-regular.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/css/fa-solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/css/fa-solid.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/css/fa-solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/css/fa-solid.min.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/css/fontawesome.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_animated.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_core.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_icons.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_larger.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_list.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_mixins.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_stacked.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/_variables.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/fa-brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/fa-brands.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/fa-regular.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/fa-regular.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/fa-solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/fontawesome/scss/fa-solid.scss -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/fonts/roboto/font.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/AzureAD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/AzureAD.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/AzureSQL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/AzureSQL.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/CassandraDefinitiveguide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/CassandraDefinitiveguide.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/CleanCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/CleanCode.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/DockerInPractice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/DockerInPractice.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/DockerNetworking.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/DockerNetworking.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/ElasticSearchInAction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/ElasticSearchInAction.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/GoInPractice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/GoInPractice.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/GraphAlgorithms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/GraphAlgorithms.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/GuideToGraphDatabases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/GuideToGraphDatabases.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/JavaConcurrency.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/JavaConcurrency.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/Kubernetes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/Kubernetes.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/ProgrammingInRuby.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/ProgrammingInRuby.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/RustProgrammingLanguage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/RustProgrammingLanguage.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/Scala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/Scala.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/ServiceFabric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/ServiceFabric.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/SevenDatabasesInSevenWeeks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/SevenDatabasesInSevenWeeks.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/SpringMicroServices.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/SpringMicroServices.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/blackHatGo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/blackHatGo.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/csharpInANutshell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/csharpInANutshell.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/dataIntensiveApplication.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/dataIntensiveApplication.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/effectivejava.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/effectivejava.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/getProgrammingWithGo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/getProgrammingWithGo.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/highPerformaceMysql.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/highPerformaceMysql.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/kaafkDefnitiveGuide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/kaafkDefnitiveGuide.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/masterring-kotlin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/masterring-kotlin.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/mongodb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/mongodb.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/node-design-patterns.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/node-design-patterns.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/nodeCookBook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/nodeCookBook.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/patternsOfEAA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/patternsOfEAA.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/pragmaticProgrammer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/pragmaticProgrammer.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/programmingcsharp8.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/programmingcsharp8.0.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/rabbitMQCookBook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/rabbitMQCookBook.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/softwareArchitect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/softwareArchitect.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/unitTesting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/images/unitTesting.jpg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/js/createaccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/js/createaccount.js -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/js/jquery-2.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/js/jquery-2.0.0.min.js -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/fancybox/fancybox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/fancybox/fancybox.min.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/fancybox/fancybox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/fancybox/fancybox.min.js -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/fancybox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/fancybox/index.html -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/owlcarousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/owlcarousel/owl.carousel.js -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/prism/prism.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/prism/prism.js -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/ajax-loader.gif -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/fonts/slick.eot -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/fonts/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/fonts/slick.svg -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/fonts/slick.ttf -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/fonts/slick.woff -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/slick-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/slick-theme.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/slick.css -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/slick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/slick.js -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/static/plugins/slickslider/slick.min.js -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/cart.html -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/checkout.html -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/create-account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/create-account.html -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/orderconfirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/orderconfirmation.html -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-mvc-sample/src/main/resources/templates/orders.html -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-quickstart-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-quickstart-samples/README.md -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-quickstart-samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-quickstart-samples/pom.xml -------------------------------------------------------------------------------- /cosmos/azure-spring-data-cosmos/cosmos-quickstart-samples/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/azure-spring-data-cosmos/cosmos-quickstart-samples/src/main/resources/application.yaml -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/README.md -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/pom.xml -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/src/main/resources/application.yml -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/terraform/main.tf -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/terraform/outputs.tf -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/terraform/setup_env.sh -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-cosmos/spring-cloud-azure-cosmos-sample/terraform/variables.tf -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/README.md -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/pom.xml -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/terraform/main.tf -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/terraform/outputs.tf -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/terraform/setup_env.sh -------------------------------------------------------------------------------- /cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/cosmos/spring-cloud-azure-starter-data-cosmos/spring-cloud-azure-data-cosmos-sample/terraform/variables.tf -------------------------------------------------------------------------------- /create-sp-using-azure-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/create-sp-using-azure-cli.md -------------------------------------------------------------------------------- /eventgrid/spring-cloud-azure-starter-eventgrid/spring-cloud-azure-sample-eventgrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventgrid/spring-cloud-azure-starter-eventgrid/spring-cloud-azure-sample-eventgrid/README.md -------------------------------------------------------------------------------- /eventgrid/spring-cloud-azure-starter-eventgrid/spring-cloud-azure-sample-eventgrid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventgrid/spring-cloud-azure-starter-eventgrid/spring-cloud-azure-sample-eventgrid/pom.xml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/README.md -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/pom.xml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/src/main/resources/application.yaml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/terraform/main.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/terraform/outputs.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/terraform/setup_env.sh -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-eventhubs/eventhubs-client/terraform/variables.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/README.md -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/pom.xml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/terraform/main.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/terraform/outputs.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/terraform/setup_env.sh -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter-integration-eventhubs/eventhubs-integration/terraform/variables.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/README.md -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/pom.xml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/src/main/resources/application.yaml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/terraform/main.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/terraform/outputs.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/terraform/setup_env.sh -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-starter/spring-cloud-azure-sample-eventhubs-kafka/terraform/variables.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/README.md -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/pom.xml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/src/main/resources/application-batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/src/main/resources/application-batch.yaml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/src/main/resources/application.yaml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/terraform/main.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/terraform/outputs.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/terraform/setup_env.sh -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-binder/terraform/variables.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/README.md -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/pom.xml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/src/main/resources/application.yaml -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/terraform/main.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/terraform/outputs.tf -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/terraform/setup_env.sh -------------------------------------------------------------------------------- /eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-cloud-azure-stream-binder-eventhubs/eventhubs-multibinders/terraform/variables.tf -------------------------------------------------------------------------------- /eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/README.md -------------------------------------------------------------------------------- /eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/pom.xml -------------------------------------------------------------------------------- /eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/src/main/resources/application.yaml -------------------------------------------------------------------------------- /eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/terraform/main.tf -------------------------------------------------------------------------------- /eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/terraform/outputs.tf -------------------------------------------------------------------------------- /eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/terraform/setup_env.sh -------------------------------------------------------------------------------- /eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/eventhubs/spring-messaging-azure-eventhubs/eventhubs-spring-messaging/terraform/variables.tf -------------------------------------------------------------------------------- /keyvault/azure-securtiy-keyvault-jca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/azure-securtiy-keyvault-jca/README.md -------------------------------------------------------------------------------- /keyvault/azure-securtiy-keyvault-jca/run-with-command-line-client-side/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/azure-securtiy-keyvault-jca/run-with-command-line-client-side/README.md -------------------------------------------------------------------------------- /keyvault/azure-securtiy-keyvault-jca/run-with-command-line-client-side/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/azure-securtiy-keyvault-jca/run-with-command-line-client-side/pom.xml -------------------------------------------------------------------------------- /keyvault/azure-securtiy-keyvault-jca/run-with-command-line-server-side/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/azure-securtiy-keyvault-jca/run-with-command-line-server-side/README.md -------------------------------------------------------------------------------- /keyvault/azure-securtiy-keyvault-jca/run-with-command-line-server-side/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/azure-securtiy-keyvault-jca/run-with-command-line-server-side/pom.xml -------------------------------------------------------------------------------- /keyvault/azure-securtiy-keyvault-jca/run-with-command-line-server-side/src/main/resources/keyvault.dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/README.md -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/README.md -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/pom.xml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/src/main/resources/application.yaml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/terraform/main.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/terraform/outputs.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/terraform/setup_env.sh -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-rest-template/terraform/variables.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/README.md -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/pom.xml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/src/main/resources/application.yaml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/terraform/main.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/terraform/outputs.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/terraform/setup_env.sh -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-server/terraform/variables.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/README.md -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/pom.xml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/src/main/resources/application.yaml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/terraform/main.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/terraform/outputs.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/terraform/setup_env.sh -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-jca/ssl-bundles-web-client/terraform/variables.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/README.md -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/pom.xml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/src/main/resources/application-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/src/main/resources/application-secrets.yml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/src/main/resources/application.yml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/terraform/main.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/terraform/outputs.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/terraform/setup_env.sh -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/property-source/terraform/variables.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/README.md -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/pom.xml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/src/main/resources/application.yml -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/terraform/main.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/terraform/outputs.tf -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/terraform/setup_env.sh -------------------------------------------------------------------------------- /keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/keyvault/spring-cloud-azure-starter-keyvault-secrets/secret-client/terraform/variables.tf -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/README.md -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/pom.xml -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/src/main/resources/application.yml -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/main.tf -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/mysql_create_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/mysql_create_user.sql -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/outputs.tf -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/set_up_azure_ad_user.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/set_up_azure_ad_user.ps1 -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/set_up_azure_ad_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/set_up_azure_ad_user.sh -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/setup_env.sh -------------------------------------------------------------------------------- /mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/mysql/spring-cloud-azure-starter-jdbc-mysql/spring-cloud-azure-mysql-sample/terraform/variables.tf -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/pom.xml -------------------------------------------------------------------------------- /postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/README.md -------------------------------------------------------------------------------- /postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/pom.xml -------------------------------------------------------------------------------- /postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/terraform/main.tf -------------------------------------------------------------------------------- /postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/terraform/outputs.tf -------------------------------------------------------------------------------- /postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/terraform/setup_env.sh -------------------------------------------------------------------------------- /postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/postgresql/spring-cloud-azure-starter-jdbc-postgresql/spring-cloud-azure-postgresql-sample/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/migration-guide.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/src/main/resources/application.yaml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-dlq-queue/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/src/main/resources/application.yaml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-queue/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/src/main/resources/application.yaml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus-jms/servicebus-jms-topic/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/src/main/resources/application.yaml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-queue/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/src/main/resources/application.yaml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-starter-servicebus/servicebus-topic/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/README.md -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder/terraform/variables.tf -------------------------------------------------------------------------------- /servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/README.md -------------------------------------------------------------------------------- /servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/pom.xml -------------------------------------------------------------------------------- /servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/src/main/resources/application.yaml -------------------------------------------------------------------------------- /servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/terraform/main.tf -------------------------------------------------------------------------------- /servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/terraform/outputs.tf -------------------------------------------------------------------------------- /servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/terraform/setup_env.sh -------------------------------------------------------------------------------- /servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging/terraform/variables.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/README.md -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/pom.xml -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/terraform/main.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/terraform/outputs.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/terraform/setup_env.sh -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-integration/terraform/variables.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/README.md -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/pom.xml -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/terraform/main.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/terraform/outputs.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/terraform/setup_env.sh -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-integration-storage-queue/storage-queue-operation/terraform/variables.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/README.md -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/pom.xml -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/src/main/resources/application.yml -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/terraform/main.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/terraform/outputs.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/terraform/setup_env.sh -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample/terraform/variables.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/README.md -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/pom.xml -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/src/main/resources/application.yml -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/terraform/main.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/terraform/outputs.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/terraform/setup_env.sh -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-file-share/storage-file-sample/terraform/variables.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/README.md -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/pom.xml -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/src/main/resources/application.yaml -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/terraform/main.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/terraform/outputs.tf -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/terraform/setup_env.sh -------------------------------------------------------------------------------- /storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-cloud-azure-starter-storage-queue/storage-queue-client/terraform/variables.tf -------------------------------------------------------------------------------- /storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/README.md -------------------------------------------------------------------------------- /storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/pom.xml -------------------------------------------------------------------------------- /storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/src/main/resources/application.yml -------------------------------------------------------------------------------- /storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/terraform/main.tf -------------------------------------------------------------------------------- /storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/terraform/outputs.tf -------------------------------------------------------------------------------- /storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/terraform/setup_env.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/terraform/setup_env.ps1 -------------------------------------------------------------------------------- /storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/terraform/setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/terraform/setup_env.sh -------------------------------------------------------------------------------- /storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/storage/spring-messaging-azure-storage-queue/storage-queue-spring-messaging/terraform/variables.tf -------------------------------------------------------------------------------- /testcontainers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/testcontainers/README.md -------------------------------------------------------------------------------- /testcontainers/spring-cloud-azure-testcontainers-for-cosmos-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/testcontainers/spring-cloud-azure-testcontainers-for-cosmos-sample/pom.xml -------------------------------------------------------------------------------- /testcontainers/spring-cloud-azure-testcontainers-for-cosmos-sample/src/test/java/CosmosTestcontainersTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/testcontainers/spring-cloud-azure-testcontainers-for-cosmos-sample/src/test/java/CosmosTestcontainersTest.java -------------------------------------------------------------------------------- /testcontainers/spring-cloud-azure-testcontainers-for-storage-blob-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/testcontainers/spring-cloud-azure-testcontainers-for-storage-blob-sample/pom.xml -------------------------------------------------------------------------------- /testcontainers/spring-cloud-azure-testcontainers-for-storage-queue-sample/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-spring-boot-samples/HEAD/testcontainers/spring-cloud-azure-testcontainers-for-storage-queue-sample/pom.xml --------------------------------------------------------------------------------