diff options
| author | Paul Buetow <paul@buetow.org> | 2023-12-31 19:39:58 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-12-31 19:39:58 +0200 |
| commit | 41ae28fd70083ab347aa613bd78a5ad3fbc8c612 (patch) | |
| tree | db108fe8d125f7fb14c39b1273bc664025cf2881 | |
| parent | b92cf093aab39ffcefd3c8a429e8e496c8504771 (diff) | |
foo
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | org-buetow-ecs/fluxservice.tf | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -6,6 +6,7 @@ * Contact and Calendar sync via ECS (migrate from Nextcloud) * Input variables, for configuring different service hosts. * Backup EFS, don't let `terraform destroy` erease all my data! Or create Backup +* Cloudwatch monitoring with E-Mail alert of the services. ## Manual steps diff --git a/org-buetow-ecs/fluxservice.tf b/org-buetow-ecs/fluxservice.tf index 25441ed..4aeb443 100644 --- a/org-buetow-ecs/fluxservice.tf +++ b/org-buetow-ecs/fluxservice.tf @@ -39,7 +39,7 @@ resource "aws_ecs_task_definition" "flux" { image = "miniflux/miniflux:latest", depends_on = [{ "containerName" : "fluxpostgres", - "condition" : "START" + "condition" : "RUNNING" }], portMappings = [{ containerPort = 8080, |
