I'm testing also Agent runtime, it deploys but I don't see the log group ```const agentRuntime= new...
f
I'm testing also Agent runtime, it deploys but I don't see the log group
Copy code
const agentRuntime= new aws.bedrock.AgentcoreAgentRuntime(
  "MyAgent",
  {
    agentRuntimeName: "my_agent",
    roleArn: agentRole.arn,
    agentRuntimeArtifact: {
      containerConfiguration: {
        containerUri: interpolate`${repo.repositoryUrl}:latest`, // Use ECR URL directly
      },
    },
    networkConfiguration: {
      networkMode: "PUBLIC",
    },
  },
  {
    dependsOn: [agentImage], // Ensure image is pushed before creating runtime
  },
)
When I click on the cloudwatch link , I'm redirected to a log group but I get this message Log group does not exist The specific log group: /aws/bedrock-agentcore/runtimes/my_agent-WJYtkFFHp7-DEFAULT does not exist in this account or region.