mirror of
https://github.com/mukul975/Anthropic-Cybersecurity-Skills.git
synced 2026-07-16 12:45:17 +03:00
c21af3347e
- Add scripts/agent.py and references/api-reference.md to all remaining skills - Update all 648 LICENSE files: copyright now reads 'Mahipal' - Add implementing-security-monitoring-with-datadog (new skill with full anatomy) - All 649 skills now have: SKILL.md, LICENSE, scripts/agent.py, references/api-reference.md
1.6 KiB
1.6 KiB
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
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 |