Skip to content

Commit

Permalink
Add ElasticBeanstalk extensions config options
Browse files Browse the repository at this point in the history
  • Loading branch information
komtaki committed Nov 8, 2020
1 parent 21df166 commit 04e14f6
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions .ebextensions/00_options.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,30 @@
option_settings:
"aws:autoscaling:launchconfiguration" :
"aws:autoscaling:launchconfiguration":
IamInstanceProfile : "aws-elasticbeanstalk-ec2-role"
EC2KeyName : "aws-eb"
InstanceType : "t2.micro"
RootVolumeSize : "100"
RootVolumeType : "gp2"
"aws:autoscaling:updatepolicy:rollingupdate":
MaxBatchSize: "1"
MinInstancesInService: "1"
RollingUpdateEnabled: "true"
RollingUpdateType: "Health"
"aws:autoscaling:trigger":
LowerThreshold: "10"
MeasureName: "CPUUtilization"
Unit: "Percent"
UpperThreshold: "200"
"aws:rds:dbinstance":
DBDeletionPolicy: "Snapshot"
DBAllocatedStorage: "10"
DBEngine: "postgres"
DBEngineVersion: "12.3"
DBInstanceClass: "db.t2.small"
DBUser: \
DBPassword: \
"aws:elasticbeanstalk:environment":
LoadBalancerType: "application"
"aws:elasticbeanstalk:command":
BatchSize: "30"
"aws:ec2:instances":
InstanceTypes: "t2.small"

0 comments on commit 04e14f6

Please sign in to comment.