![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
aws-access-analyzer-validator
Advanced tools
A tool to validate existing identity and resource policies across regions and supported AWS services with AWS IAM Access Analyzer.
A tool to validate existing identity and resource policies across regions and supported AWS services with AWS IAM Access Analyzer.
This tool
See examples/sample_report.md for an example.
pip install aws-access-analyzer-validator
aws-access-analyzer-validator -o report.md
report.md
to see analysis results.aws-access-analyzer-validator
supports the following arguments:
--regions
- A comma separated list of regions to limit policy
validation to. For example, --regions eu-west-1,eu-north-1
limits
validation to policies in eu-west-1
and eu-north-1
regions. Global
resources (IAM, S3) are scanned regardless of region limitations.aws-access-analyzer-validator
validates policies from the following
services:
This tool requires the following permissions to operate:
accessanalyzer:ValidatePolicy
ecr:DescribeRepositories
ecr:GetRepositoryPolicy
iam:GetAccountAuthorizationDetails
s3:GetBucketPolicy
s3:ListAllMyBuckets
sns:GetTopicAttributes
sns:ListTopics
sqs:GetQueueAttributes
sqs:ListQueues
Here's an IAM policy that grants the required privileges:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PermissionsForAAValidator",
"Effect": "Allow",
"Action": [
"access-analyzer:ValidatePolicy",
"ecr:DescribeRepositories",
"ecr:GetRepositoryPolicy",
"iam:GetAccountAuthorizationDetails",
"s3:GetBucketPolicy",
"s3:ListAllMyBuckets",
"sns:GetTopicAttributes",
"sns:ListTopics",
"sqs:GetQueueAttributes",
"sqs:ListQueues"
],
"Resource": "*"
}
]
}
Requires Python 3.8+ and Poetry. Useful commands:
# Setup environment
poetry install
# Run integration tests (requires admin-level AWS credentials)
make test
# Run linters
make -k lint
# Format code
make format
# Deploy test resources (requires AWS CLI and admin level AWS credentials)
make deploy-test-resources
# Delete test resources
make delete-test-resources
MIT.
FAQs
A tool to validate existing identity and resource policies across regions and supported AWS services with AWS IAM Access Analyzer.
We found that aws-access-analyzer-validator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.