Nimbus AWS Security SDK — Bedrock RAG remediation and infrastructure provisioning
Project description
nimbus-core
Nimbus AWS Security SDK — Bedrock RAG remediation and infrastructure provisioning.
Install
pip install nimbus-core
Prerequisites
- AWS credentials configured (
aws configureor env vars) - Bedrock model access enabled:
amazon.titan-embed-text-v2:0anthropic.claude-haiku-4-5-20251001-v1:0
Quick Start
With an existing Knowledge Base
from nimbus_core import NimbusClient
client = NimbusClient(region="us-east-1", kb_id="YOUR_KB_ID")
result = client.suggest_fix("S3 bucket is publicly accessible")
print(result.remediation)
Provision a new Knowledge Base first
from nimbus_core import NimbusClient
client = NimbusClient(region="us-east-1")
client.init() # creates S3 bucket, vectors, Bedrock KB, uploads docs
result = client.suggest_fix("EC2 instance has no IMDSv2 enforced")
print(result.remediation)
Structured finding input
from nimbus_core import NimbusClient, FindingInput
client = NimbusClient(region="us-east-1", kb_id="YOUR_KB_ID")
finding = FindingInput(
title="Public S3 Bucket",
description="S3 bucket my-bucket has public read access enabled",
severity="HIGH",
service="s3",
resource_arn="arn:aws:s3:::my-bucket",
)
result = client.suggest_fix_for_finding(finding)
print(result.remediation)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nimbus_core-0.8.0.tar.gz
(13.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nimbus_core-0.8.0.tar.gz.
File metadata
- Download URL: nimbus_core-0.8.0.tar.gz
- Upload date:
- Size: 13.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c15f79311ee475164d3180407ab0fc60408bfeb9c3518f818846fc4d74fcc146
|
|
| MD5 |
2f3ea6e94ec7ebac494cc26d9562de99
|
|
| BLAKE2b-256 |
5db1d1f1d984dafb9ddf3c0d696d13b3f75e2b508fbcdfcedbd2033b46cb7f9d
|
File details
Details for the file nimbus_core-0.8.0-py3-none-any.whl.
File metadata
- Download URL: nimbus_core-0.8.0-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7f6d7b748d2445ae32cd0452d081b595c706452f0a59720c1391362e831c4c7
|
|
| MD5 |
ebaf57470eb10e6ada4613d6c17a545d
|
|
| BLAKE2b-256 |
cb9f03a5d09036328fce4d9afc75fcc8ac20a4af451646f488aa98d7bcfda9e6
|