Complete the code to specify the cloud provider in the Spring Boot deployment configuration.
cloud.provider=[1]The correct cloud provider for this deployment is AWS, so you set cloud.provider=AWS.
Complete the code to set the region for AWS deployment.
cloud.region=[1]The AWS region us-west-1 is a valid region for deployment in the western US.
Fix the error in the deployment configuration to specify the correct Azure service for Spring Boot.
azure.service=[1]Azure App Service is the correct service to deploy Spring Boot web applications.
Fill both blanks to configure AWS deployment with the correct instance type and storage option.
aws.instanceType=[1] aws.storage=[2]
The t2.micro instance is a common small AWS instance type, and EBS is the block storage used for instances.
Fill all three blanks to complete the Azure deployment configuration with resource group, region, and runtime stack.
azure.resourceGroup=[1] azure.region=[2] azure.runtimeStack=[3]
The resource group myResourceGroup organizes resources, eastus is a valid Azure region, and JAVA|11 specifies Java 11 runtime for Spring Boot.