Skip to content

Commit 68012c7

Browse files
authored
feat: add ACTOR_PERMISSION_LEVEL to the configuration (#689)
This adds the `ACTOR_PERMISSION_LEVEL` environmental variable as `actor_permission_level` to the Configuration, Closes #690
1 parent e8cc74d commit 68012c7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/apify/_configuration.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ class Configuration(CrawleeConfiguration):
6161
),
6262
] = None
6363

64+
actor_permission_level: Annotated[
65+
str | None,
66+
Field(
67+
description='Permission level the Actor is run under.',
68+
),
69+
] = None
70+
6471
actor_run_id: Annotated[
6572
str | None,
6673
Field(

0 commit comments

Comments
 (0)