mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
(build) stack with db
This commit is contained in:
parent
da4b150398
commit
702e46b53d
1 changed files with 10 additions and 1 deletions
|
|
@ -1,8 +1,17 @@
|
|||
---
|
||||
Resources:
|
||||
MyEC2Instance:
|
||||
LiteLLMServer:
|
||||
Type: "AWS::EC2::Instance"
|
||||
Properties:
|
||||
AvailabilityZone: "us-east-1a"
|
||||
ImageId: "ami-0f403e3180720dd7e" # Replace with your desired AMI ID
|
||||
InstanceType: "t2.micro"
|
||||
LiteLLMDB:
|
||||
Type: "AWS::RDS::DBInstance"
|
||||
Properties:
|
||||
AllocatedStorage: 5
|
||||
Engine: "postgres"
|
||||
MasterUsername: "litellmAdmin" # Replace with your desired master username
|
||||
MasterUserPassword: "litellmPassword" # Replace with your desired secure password
|
||||
DBInstanceClass: "db.t3.micro"
|
||||
AvailabilityZone: "us-east-1a"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue