* BAEL-6255 - Run a Spring Boot application in AWS Lambda
* BAEL-6255 - Run a Spring Boot application in AWS Lambda
* fix on template.yaml
* fix on template.yaml
* removed log from test
* resolved issues reported on PR
* BAEL-6277 - A Guide To Spring Cloud Azure
First commit
* BAEL-6277 - A Guide To Spring Cloud Azure
Added to README.md the steps to create the secrets
* BAEL-6277 - A Guide To Spring Cloud Azure
Added the integration Azure Key Vault Properties
* BAEL-6277 - A Guide To Spring Cloud Azure
Added the integration Azure Key Vault Properties
* BAEL-6277 - A Guide To Spring Cloud Azure Key Vault
Added one level package keyvault
* BAEL-6277 - A Guide To Spring Cloud Azure Key Vault
removed target release version
* BAEL-6277 - A Guide To Spring Cloud Azure Key Vault
fix compilation of NoSuchElementException
* BAEL-6277 - A Guide To Spring Cloud Azure Key Vault
fix pom.xml
* Revert "BAEL-6277 - A Guide To Spring Cloud Azure Key Vault"
This reverts commit 1cca1d0d69.
* BAEL-6277 - A Guide To Spring Cloud Azure Key Vault
fix pom.xml
* BAEL-6277 - A Guide To Spring Cloud Azure Key Vault
downgrade version to fix jenkins pipeline error
* BAEL-6277 - A Guide To Spring Cloud Azure Key Vault
comment run on main class
---------
Co-authored-by: Cesare <cesare.valenti@hotmail.com>
667 B
667 B
Spring Cloud Azure
Relevant Articles
Azure KeyVault:
In order to create the secrets, follow these steps:
- create an Azure account
- install the Azure Cli an run the following commands
- login on Azure -> az-login
- create a resource group: az group create --name spring_cloud_azure --location eastus
- create a keyvault storage: az keyvault create --name new_keyvault --resource-group spring_cloud_azure --location eastus
- create the secrets: > az keyvault secret set --name my-database-secret --value my-database-secret-value --vault-name new_keyvault,> az keyvault secret set --name my-secret --value my-secret-value --vault-name new_keyvault