Console terminology: In the Maverics Console, Orchestrator instances and
configuration delivery are managed through Deployments. When working directly
with YAML, configuration is managed as files delivered via the
-config flag or
MAVERICS_CONFIG environment variable.Overview
When configured with the AWS Secrets Manager provider, the Orchestrator authenticates to AWS using the default SDK credential chain and retrieves secrets by name. The provider supports IAM role-based authentication (recommended for EC2, ECS, and Lambda) as well as static access key credentials resolved from environment variables. Secret versioning is supported through AWS Secrets Manager’s built-in staging labels.Use Cases
- AWS-native secret storage — store and manage Orchestrator secrets alongside other AWS resources with native IAM integration
- Automatic rotation — leverage AWS Secrets Manager’s built-in rotation capabilities to rotate credentials on a schedule
- Cross-account secret sharing — share secrets across AWS accounts using resource-based policies
Configuration
Secret providers are not configured in YAML. They are set via theMAVERICS_SECRET_PROVIDER environment variable or the -secretProvider CLI flag.
- Console UI
- Configuration
Console UI documentation is coming soon. This section will walk you
through configuring this component using the Maverics Console’s visual
interface, including step-by-step screenshots and field descriptions.
Configuration via Environment Variable
Configuration via CLI Flag
Referencing Secrets in YAML
Once the secret provider is configured, reference secrets in your Orchestrator YAML configuration using angle bracket syntax:Configuration Reference
URL Structure
URL Parameters
| Parameter | Required | Description |
|---|---|---|
| Region | Yes | AWS region where the secret is stored (e.g., us-west-2, eu-west-1) |
| Secret name | Yes | Name of the secret in AWS Secrets Manager (e.g., maverics-secrets) |
AWS Credential Resolution
The provider uses the default AWS SDK credential chain to authenticate. Credentials are resolved in the following order:- Environment variables —
AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY, and optionallyAWS_SESSION_TOKEN - Shared credentials file —
~/.aws/credentials - IAM role for Amazon EC2 — instance profile credentials (recommended for EC2 deployments)
- IAM role for ECS tasks — task role credentials (recommended for ECS deployments)
- IAM role for EKS pods — IRSA credentials (recommended for EKS deployments)
Troubleshooting
“AccessDeniedException” when starting the Orchestrator Verify that the IAM role or access keys have thesecretsmanager:GetSecretValue permission for the configured secret ARN. Check the IAM policy attached to the role or user.
“ResourceNotFoundException” for the secret name
Confirm the secret name and region are correct. The secret must exist in the specified AWS region. Secret names are case-sensitive.
Secrets not resolving in YAML configuration
Ensure the angle bracket syntax matches the key names stored in the AWS secret. The secret value in AWS Secrets Manager should be a JSON object where the keys correspond to the key names used in <namespace.key> references.