Skip to content

Commit 090faf7

Browse files
committed
deploy/run env var
1 parent ec0b159 commit 090faf7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/agentex/lib/environment_variables.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ class EnvVarKeys(str, Enum):
2424
ACP_URL = "ACP_URL"
2525
ACP_PORT = "ACP_PORT"
2626
ACP_TYPE = "ACP_TYPE"
27-
# Workflow Configuraiton
27+
# Workflow Configuration
2828
WORKFLOW_NAME = "WORKFLOW_NAME"
2929
WORKFLOW_TASK_QUEUE = "WORKFLOW_TASK_QUEUE"
30+
# Auth Configuration
3031
AUTH_PRINCIPAL_B64 = "AUTH_PRINCIPAL_B64"
3132

3233

@@ -55,7 +56,7 @@ class EnvironmentVariables(BaseModel):
5556
# Workflow Configuration
5657
WORKFLOW_TASK_QUEUE: str | None = None
5758
WORKFLOW_NAME: str | None = None
58-
BASE64_AUTH_PRINCIPAL: str | None = None
59+
AUTH_PRINCIPAL_B64: str | None = None
5960

6061
@classmethod
6162
def refresh(cls) -> EnvironmentVariables | None:

0 commit comments

Comments
 (0)