-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault_config.yml
More file actions
45 lines (45 loc) · 1.58 KB
/
default_config.yml
File metadata and controls
45 lines (45 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html
ElasticBeanstalk:
# aws elasticbeanstalk list-available-solution-stacks --region us-east-1
# SolutionStackName can have `*`, in which case it will use the latest matching stack (using Python fnmatch for matching)
SolutionStackName: "64bit Amazon Linux 2023 * Python 3.11"
NumProcesses: "1"
InstanceTypes: "t3.small"
IamInstanceProfile: "aws-elasticbeanstalk-ec2-role"
AssociatePublicIpAddress: True
ProxyServer: "apache" # apache, nginx
InstancePublicSubnets: True
# Omit the load balancer block to have it be not load balanced
LoadBalancer:
LoadBalancerType: "application"
SSLCertificateId: null
ELBScheme: "public" # public, private
MinSize: "1"
MaxSize: "1"
PublicSubnets: True
# Omit the managed updates block to disable managed updates
ManagedUpdates:
PreferredStartTime: "TUE:05:15"
UpdateLevel: "minor" # patch, minor
ServiceRoleForManagedUpdates: "AWSServiceRoleForElasticBeanstalkManagedUpdates"
RDS:
AllocatedStorage: 100
DBInstanceClass: "db.t3.small"
MasterUsername: "db_admin"
BackupRetentionPeriod: 30
MultiAZ: False
AutoMinorVersionUpgrade: False
PubliclyAccessible: False
StorageType: "gp2"
StorageEncrypted: True
CopyTagsToSnapshot: True
MonitoringInterval: 0 # 60 but 0 disables this
DeletionProtection: False
MaxAllocatedStorage: 1000
Postgres:
DBName: "ebdb"
Engine: "postgres"
EngineVersion: "17.*"
Port: 5432
DBParameterGroupName: "default.postgres17"
LicenseModel: "postgresql-license"