Skip to content

Commit 9c58b9c

Browse files
Update
1 parent 0198938 commit 9c58b9c

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
uses: astral-sh/setup-uv@v5
2323

2424
- name: Setup Python
25-
run: uv python install 3.11
25+
run: uv python install 3.13
2626

2727
- name: Install dependencies
28-
run: uv pip install --system -e ".[dev]"
28+
run: uv pip install -e ".[dev]"
2929

3030
- name: Run tests
3131
run: uv run pytest tests/test_models.py -v

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
uses: astral-sh/setup-uv@v5
2020

2121
- name: Setup Python
22-
run: uv python install 3.11
22+
run: uv python install 3.13
2323

2424
- name: Install dependencies
25-
run: uv pip install --system -e ".[dev]"
25+
run: uv pip install -e ".[dev]"
2626

2727
- name: Run tests
2828
run: uv run pytest tests/test_models.py -v

terraform/main.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,13 @@ resource "aws_security_group" "ecs" {
245245
cidr_blocks = ["0.0.0.0/0"]
246246
}
247247

248+
egress {
249+
from_port = 0
250+
to_port = 0
251+
protocol = "-1"
252+
ipv6_cidr_blocks = ["::/0"]
253+
}
254+
248255
tags = {
249256
Name = "${var.project_name}-ecs-sg"
250257
}

0 commit comments

Comments
 (0)