neuron-secret-aws
Secret resolver for AWS Secrets Manager — neuron backend (stub)
Overview
neuron-secret-aws will implement SecretResolver backed by
AWS Secrets Manager. It reads the secret ARN or name
from the SecretSource config, calls the AWS API with ambient credentials (IAM role, instance
profile, or explicit key), and returns the secret value.
Status: stub. The trait implementation and config types are defined; the AWS SDK integration is in progress. The interface is stable.
Usage
[]
= "0.4"
= "0.4"
use AwsSecretsResolver;
use SecretResolver;
use Arc;
// Uses ambient AWS credentials (env vars, ~/.aws, instance metadata, etc.)
let resolver: = new;
Part of the neuron workspace
neuron is a composable async agentic AI framework for Rust. See the book for architecture and guides.