AWS Parameters
Configuration for the Beanstalk Application AWS Environmental properties for beanstalk environment can be defined in AWS Environment properties under Configuration this is very important since based on this we can point the application to different DB or we get the flexibility to change configuration without a redeployment or release. We need to point the application to the database and provide other configuration parameters. Defining these here makes it possible for us to deploy the same "war" application file in Production as well as Test environments. These properties are used in xml files as ${PROPERTY_NAME} and in the code using "System.getProperty("PROPERTY_NAME") The following configurations contain general configurations which needs to be available for all modules and specific configuration for each module. We need to define new Property Names and include these when creating an AWS beanstalk instance. Using Custom Environment Prope...