Skip to content
Snippets Groups Projects
Commit 2490267e authored by Barclay Walsh's avatar Barclay Walsh
Browse files

Updated DependsOn clause; began environmentalization of the application.properties file.

parent 45840b2e
Branches
Tags
1 merge request!6Trusted ibm
......@@ -504,7 +504,7 @@ Resources:
IndexCacheStack:
Type: 'AWS::CloudFormation::Stack'
DependsOn: ECSStack
DependsOn: ECSNetworkStack
Properties:
TemplateURL: !Join [ '', [ !Ref ChildTemplateBasePath, cache.yml ] ]
Parameters:
......@@ -518,7 +518,7 @@ Resources:
SchemaCacheStack:
Type: 'AWS::CloudFormation::Stack'
DependsOn: ECSStack
DependsOn: ECSNetworkStack
Properties:
TemplateURL: !Join [ '', [ !Ref ChildTemplateBasePath, cache.yml ] ]
Parameters:
......
server.servlet.contextPath=/api/indexer/v2/
logging.level.org.springframework.web=DEBUG
server.port=80
JAVA_HEAP_OPTS=-Xms4096M -Xmx4096M
server.port=${APPLICATION_PORT}
JAVA_HEAP_OPTS=-Xms${JAVA_HEAP_MEMORY}M -Xmx${JAVA_HEAP_MEMORY}M
JAVA_GC_OPTS=-XX:+UseG1GC -XX:+UseStringDeduplication -XX:InitiatingHeapOccupancyPercent=45
aws.threads=50
......@@ -11,9 +11,9 @@ CRON_EMPTY_INDEX_CLEANUP_THRESHOLD_DAYS=7
## AWS DynamoDB configuration
aws.dynamodb.key=kind
aws.dynamodb.table.prefix=dev-
aws.dynamodb.region=us-east-1
aws.dynamodb.endpoint=dynamodb.us-east-1.amazonaws.com
aws.dynamodb.table.prefix=${ENVIRONMENT}-
aws.dynamodb.region=${AWS_REGION}
aws.dynamodb.endpoint=dynamodb.${AWS_REGION}.amazonaws.com
## AWS S3 configuration
aws.s3.records.bucket-name=dev-osdu-data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment