Skip to content

Commit 413fd33

Browse files
committed
Merge branch 'morosi-fix' into 'master'
Allow str for Role.condition See merge request it/e3-aws!74
2 parents cfea179 + c95c19f commit 413fd33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/e3/aws/troposphere/iam/role.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class Role(Construct):
5252
tags: dict[str, str] = field(default_factory=lambda: {})
5353
path: str = "/"
5454
boundary: str | None = None
55-
condition: dict[str, dict] | None = None
55+
condition: str | dict[str, dict] | None = None
5656
inline_policies: dict[str, PolicyDocument | PolicyStatement | dict] | None = None
5757

5858
@property

0 commit comments

Comments
 (0)