Skip to content

Commit 9e39da9

Browse files
author
ADOT Patch workflow
committed
fix arn namse in test
1 parent 25f91ac commit 9e39da9

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

aws-opentelemetry-distro/tests/amazon/opentelemetry/distro/patches/test_instrumentation_patch.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,20 @@
5959
_AGENTCORE_RUNTIME_ARN: str = "arn:aws:bedrock-agentcore:us-east-1:123456789012:runtime/test-runtime-123"
6060
_AGENTCORE_RUNTIME_ENDPOINT_ARN: str = "arn:aws:bedrock-agentcore:us-east-1:123456789012:runtime-endpoint/test-endpoint"
6161
_AGENTCORE_RUNTIME_ID: str = "test-runtime-123"
62-
_AGENTCORE_BROWSER_ARN: str = "arn:aws:bedrock-agentcore:us-east-1:123456789012:browser/agentBrowser-123456789"
63-
_AGENTCORE_BROWSER_ID: str = "agentBrowser-123456789"
62+
_AGENTCORE_BROWSER_ARN: str = "arn:aws:bedrock-agentcore:us-east-1:123456789012:browser/testBrowser-1234567890"
63+
_AGENTCORE_BROWSER_ID: str = "testBrowser-1234567890"
6464
_AGENTCORE_CODE_INTERPRETER_ARN: str = (
65-
"arn:aws:bedrock-agentcore:us-east-1:123456789012:code-interpreter/agentCodeInterpreter-123456789"
65+
"arn:aws:bedrock-agentcore:us-east-1:123456789012:code-interpreter/testCodeInt-1234567890"
6666
)
67-
_AGENTCORE_CODE_INTERPRETER_ID: str = "agentCodeInterpreter-123456789"
67+
_AGENTCORE_CODE_INTERPRETER_ID: str = "testCodeInt-1234567890"
6868
_AGENTCORE_GATEWAY_ARN: str = "arn:aws:bedrock-agentcore:us-east-1:123456789012:gateway/agentGateway-123456789"
6969
_AGENTCORE_GATEWAY_ID: str = "agentGateway-123456789"
7070
_AGENTCORE_TARGET_ID: str = "target-123456789"
7171
_AGENTCORE_MEMORY_ARN: str = "arn:aws:bedrock-agentcore:us-east-1:123456789012:memory/agentMemory-123456789"
7272
_AGENTCORE_MEMORY_ID: str = "agentMemory-123456789"
73-
_AGENTCORE_CREDENTIAL_PROVIDER_ARN: str = "arn:aws:bedrock-agentcore:us-east-1:123456789012:credential-provider/test-cp"
73+
_AGENTCORE_CREDENTIAL_PROVIDER_ARN: str = (
74+
"arn:aws:acps:us-east-1:123456789012:token-vault/test-vault/apikeycredentialprovider/test-provider"
75+
)
7476
_AGENTCORE_WORKLOAD_IDENTITY_ARN: str = "arn:aws:bedrock-agentcore:us-east-1:123456789012:workload-identity/test-wi"
7577

7678
# Patch names

0 commit comments

Comments
 (0)