Hi guys, I'm trying to host fleetdm on AWS with Te...
# fleet
r
Hi guys, I'm trying to host fleetdm on AWS with Terraform. I've followed the instructions and set everything up, but there are errors in the log. Any leads on what's going on and how to fix this?
e
You need to run a command first, did you apply the terraform in the staggered way? If possible, run an ecs task to
Copy code
fleet prepare db
Copy code
aws ecs execute-command --cluster <cluster-name> --task <task-arn> --container <container-name> --command <command>
k
You can have migrations run as part of the deployment process by using the migrations module. That's included in the example setup here.
r
Awesome! It's now up and running, thanks guys!