Skip to content

Commit 2ef4175

Browse files
committed
fix: issue regarding rules not added to sg
1 parent 5881ac8 commit 2ef4175

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

easyecs/cloudformation/template/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def create_security_group(
318318
sg_name = f"{service_name}-sg"
319319
if security_group_id:
320320
sg = SecurityGroup.from_security_group_id(
321-
stack, sg_name, security_group_id=security_group_id, mutable=False
321+
stack, sg_name, security_group_id=security_group_id
322322
)
323323
else:
324324
sg: ISecurityGroup = SecurityGroup(

easyecs/docker/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def docker_build_cmd(build, image_name):
2020
build_cmd_params += ["--platform=linux/amd64", build.context]
2121

2222
build_cmd = " ".join(build_cmd_params)
23+
2324
return build_cmd
2425

2526

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "easyecs"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
description = ""
55
authors = ["BONVARLET Benjamin <benjaminbonvarlet96@gmail.com>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)