Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/automatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
id: plan
run: |
set -o pipefail -ex
terraform plan -compact-warnings -no-color -input=false -lock-timeout=5m -out tfplan 2>&1 \
terraform plan -compact-warnings -no-color -input=false -lock=false -out tfplan 2>&1 \
| tee terraform_log
terraform show -json tfplan > tfplan.json

Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
id: plan-cost
run: |
set -o pipefail -ex
terraform plan -compact-warnings -no-color -input=false -lock-timeout=5m -out tfplan-cost 2>&1
terraform plan -compact-warnings -no-color -input=false -lock=false -out tfplan-cost 2>&1
terraform show -json tfplan-cost > tfplan-cost.json

- uses: overmindtech/cost-signals-action@v1
Expand Down
2 changes: 1 addition & 1 deletion modules/scenarios/loom.tf
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ resource "aws_ecs_task_definition" "face" {
memory = 2048
essential = true
healthCheck = {
command = ["CMD-SHELL", "wget -q --spider localhost:1234"]
command = ["CMD-SHELL", "wget -q --spider localhost:8080"]
interval = 30
retries = 3
timeout = 5
Expand Down