File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments