mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +00:00
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):
- brain/ LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
dispatch, A51 channels, and the OSINT cluster
- knowledge/ LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
MITRE ATT&CK data
- reference/ defensive threat-reference (C3, shhbruh doc) + AdaYaml parser
License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.
Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.
https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
47 lines
1.6 KiB
Markdown
47 lines
1.6 KiB
Markdown
# AWS Verified Access ZTNA — API Reference
|
|
|
|
## Libraries
|
|
|
|
| Library | Install | Purpose |
|
|
|---------|---------|---------|
|
|
| boto3 | `pip install boto3` | AWS SDK — EC2 Verified Access API |
|
|
|
|
## Key boto3 EC2 Methods
|
|
|
|
| Method | Description |
|
|
|--------|-------------|
|
|
| `describe_verified_access_instances()` | List VA instances |
|
|
| `describe_verified_access_groups()` | List VA groups with policies |
|
|
| `describe_verified_access_endpoints()` | List VA application endpoints |
|
|
| `describe_verified_access_trust_providers()` | List identity/device trust providers |
|
|
| `create_verified_access_instance()` | Create new VA instance |
|
|
| `create_verified_access_group(VerifiedAccessInstanceId=)` | Create group under instance |
|
|
| `create_verified_access_endpoint()` | Expose application via VA |
|
|
| `modify_verified_access_group_policy()` | Update Cedar policy document |
|
|
|
|
## Cedar Policy Language
|
|
|
|
```cedar
|
|
permit(principal, action, resource)
|
|
when {
|
|
context.identity.groups has "engineering" &&
|
|
context.identity.email.address like "*@company.com" &&
|
|
context.device.status == "compliant"
|
|
};
|
|
```
|
|
|
|
## Trust Provider Types
|
|
|
|
| Type | Description |
|
|
|------|-------------|
|
|
| user / iam-identity-center | AWS IAM Identity Center OIDC |
|
|
| user / oidc | Third-party OIDC provider |
|
|
| device / jamf | Jamf device trust |
|
|
| device / crowdstrike | CrowdStrike device posture |
|
|
|
|
## External References
|
|
|
|
- [AWS Verified Access Docs](https://docs.aws.amazon.com/verified-access/)
|
|
- [Cedar Policy Language](https://www.cedarpolicy.com/en)
|
|
- [boto3 EC2 Verified Access](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2/client/describe_verified_access_instances.html)
|