AWS Environment Replication Tool - Clone production to staging in minutes
Project description
RepliMap
AWS Infrastructure Staging Cloner
Point at your Production AWS and generate cost-optimized Staging Terraform in minutes.
๐ Read-only mode | ๐ All data stays local | โก Minutes, not hours
Overview
RepliMap scans your AWS resources, builds a dependency graph, and generates Infrastructure-as-Code to replicate your environment with intelligent transformations:
- Instance Downsizing: Automatically reduces EC2/RDS instance sizes for cost savings
- Environment Renaming: Transforms names from
prodtostaging - Sensitive Data Sanitization: Removes secrets, passwords, and hardcoded credentials
- Dependency Awareness: Understands VPC โ Subnet โ EC2 relationships
Installation
Recommended: pipx (isolated environment)
# Install pipx if you don't have it
brew install pipx && pipx ensurepath # macOS
# or: pip install --user pipx && pipx ensurepath # Linux
# Install RepliMap
pipx install replimap
# Verify installation
replimap --version
# Update later
pipx upgrade replimap
Alternative: pip
pip install replimap
Alternative: uv
uv pip install replimap
Docker (no Python required)
# Pull the image
docker pull replimap/replimap:latest
# Run with AWS credentials
docker run -v ~/.aws:/root/.aws replimap/replimap scan --profile prod --region us-east-1
Quick Start
1. Verify Installation
replimap --version
2. Scan Your AWS Environment
# Basic scan (scans all resources in region)
replimap scan --profile prod --region us-east-1
# Scan a specific VPC only
replimap scan --profile prod --scope vpc:vpc-12345678
# Scan resources by tag (e.g., Application=MyApp)
replimap scan --profile prod --entry tag:Application=MyApp
# Scan starting from an entry point (e.g., ALB)
replimap scan --profile prod --entry alb:my-app-alb
# Use cached results for faster incremental scans
replimap scan --profile prod --cache
3. Generate Infrastructure-as-Code
# Preview what will be generated
replimap clone --profile prod --mode dry-run
# Generate Terraform files
replimap clone --profile prod --output-dir ./staging-tf --mode generate
# Generate with custom transformations
replimap clone --profile prod --output-dir ./staging-tf \
--rename-pattern "prod:staging" \
--downsize \
--mode generate
4. Apply to Your Staging Account
cd ./staging-tf
# Quick validation (no AWS credentials needed)
make quick-validate
# Or use the test script
./test-terraform.sh
# Full workflow with Makefile
make init # Initialize Terraform
make plan # Plan changes (outputs tfplan.txt)
make apply # Apply the plan
# Alternative: manual Terraform commands
terraform init
terraform plan -out=tfplan
terraform apply tfplan
5. Available Makefile Targets
The generated Terraform includes a comprehensive Makefile:
make help # Show all targets
make plan # Plan and save to tfplan + tfplan.txt
make plan-target TARGET=... # Plan specific resource
make plan-json # Plan with JSON output
make apply # Apply saved plan
make destroy # Destroy (requires confirmation)
make state-list # List resources in state
make clean # Remove generated files
6. Check License & Usage
# View license status
replimap license status
# View usage statistics
replimap license usage
# Activate a license key (format: RM-XXXX-XXXX-XXXX-XXXX)
replimap license activate RM-XXXX-XXXX-XXXX-XXXX
Graph-Based Selection Engine
RepliMap uses intelligent graph traversal instead of simple filtering. This ensures complete, working infrastructure clones.
Selection Modes
# VPC Scope - Select everything in a VPC
replimap scan --profile prod --scope vpc:vpc-12345678
replimap scan --profile prod --scope vpc-name:Production*
# Entry Point - Start from a resource and follow dependencies
replimap scan --profile prod --entry alb:my-app-alb
replimap scan --profile prod --entry tag:Application=MyApp
# Tag-Based - Select by tags
replimap scan --profile prod --tag Environment=Production
YAML Configuration (Advanced)
For complex selection scenarios, use a YAML config file:
# selection.yaml
selection:
mode: entry_point
entry_points:
- type: alb
name: my-app-*
dependency_direction: both
max_depth: 5
boundary_config:
network_boundaries:
- transit_gateway
- vpc_peering
identity_boundaries:
- iam_role
clone_mode: isolated
exclusions:
types:
- cloudwatch_log_group
patterns:
- "*-backup-*"
replimap scan --profile prod --config selection.yaml
Boundary Handling
RepliMap intelligently handles infrastructure boundaries:
| Boundary Type | Resources | Default Behavior |
|---|---|---|
| Network | Transit Gateway, VPC Peering | Create as data source |
| Identity | IAM Roles, Policies | Reference existing |
| Global | Route53, CloudFront | Create variables |
Security Auditing
RepliMap includes security auditing powered by Checkov for scanning your AWS infrastructure.
# Run security audit on scanned infrastructure
replimap audit --profile prod --region us-east-1
# Output to HTML report
replimap audit --profile prod --format html --output audit-report.html
# Output to JSON for CI/CD integration
replimap audit --profile prod --format json --output audit.json
# Exit with non-zero code on failures (for CI/CD)
replimap audit --profile prod --ci
# Scan specific VPC
replimap audit --profile prod --scope vpc:vpc-12345678
Infrastructure Visualization
Generate interactive visualizations of your AWS infrastructure dependencies.
# Generate Mermaid diagram
replimap graph --profile prod --format mermaid
# Generate interactive HTML (D3.js)
replimap graph --profile prod --format html --output infra-graph.html
# Export as JSON for custom tooling
replimap graph --profile prod --format json --output graph.json
# Scope to specific VPC
replimap graph --profile prod --vpc vpc-12345678
Graph Simplification
By default, graphs are simplified for readability by hiding noisy resources (SG rules, routes) and collapsing large groups of similar resources.
# Show all resources (no filtering or grouping)
replimap graph -r us-east-1 --all
# Include security group rules
replimap graph -r us-east-1 --sg-rules
# Include routes and route tables
replimap graph -r us-east-1 --routes
# Disable resource grouping (show individual nodes)
replimap graph -r us-east-1 --no-collapse
# Security-focused view (show SGs, IAM, KMS)
replimap graph -r us-east-1 --security
| Option | Description |
|---|---|
--all, -a |
Show all resources without filtering |
--sg-rules |
Include security group rules |
--routes |
Include routes and route tables |
--no-collapse |
Disable resource grouping |
--security |
Security-focused view |
Infrastructure Drift Detection
Detect drift between your Terraform state and actual AWS resources.
# Detect drift using local state file
replimap drift --profile prod --state ./terraform.tfstate
# Detect drift using remote S3 backend
replimap drift --profile prod \
--remote-bucket my-tf-state \
--remote-key prod/terraform.tfstate \
--remote-region us-east-1
# Output HTML report
replimap drift --profile prod --state ./terraform.tfstate \
--format html --output drift-report.html
# CI/CD mode (exit code reflects drift status)
replimap drift --profile prod --state ./terraform.tfstate --ci
# Scope to specific VPC
replimap drift --profile prod --state ./terraform.tfstate \
--scope vpc:vpc-12345678
Exit Codes (CI Mode)
| Code | Meaning |
|---|---|
| 0 | No drift detected |
| 1 | Drift detected (or critical/high severity drift) |
| 2 | Error during detection |
Dependency Explorer
Explore what resources may be affected before modifying or deleting a resource.
Important: This analysis is based on AWS API metadata only. Application-level dependencies (hardcoded IPs, DNS, config files) are NOT detected. Always validate all dependencies before making infrastructure changes.
# Explore dependencies for a security group
replimap deps sg-12345 -r us-east-1
# Show dependency tree view
replimap deps vpc-abc123 -r us-east-1 --format tree
# Generate interactive HTML visualization
replimap deps i-xyz789 -r us-east-1 -f html -o deps.html
# Limit analysis depth
replimap deps vpc-12345 -r us-east-1 --depth 3
# Scope to a specific VPC
replimap deps sg-12345 -r us-east-1 --vpc vpc-abc123
Output Formats
| Format | Description |
|---|---|
console |
Rich terminal output with summary (default) |
tree |
Tree view of dependencies |
table |
Table of affected resources |
html |
Interactive D3.js visualization |
json |
Machine-readable JSON |
Estimated Impact Levels
Note: These are estimates based on AWS API metadata only.
| Level | Score | Description |
|---|---|---|
| CRITICAL | 90-100 | Core infrastructure (VPC, main DB) |
| HIGH | 70-89 | Production services |
| MEDIUM | 40-69 | Supporting resources |
| LOW | 1-39 | Peripheral resources |
| NONE | 0 | No downstream impact detected |
| UNKNOWN | - | Impact cannot be determined |
Cost Estimation
Estimate monthly AWS costs for your infrastructure with optimization recommendations.
Important: Cost estimates are for planning purposes only. Actual costs may differ due to data transfer, API calls, reserved instances, and other factors not included in estimates.
# Estimate costs for current region
replimap cost -r us-east-1
# Estimate costs for a specific VPC
replimap cost -r us-east-1 --vpc vpc-12345
# Export to HTML report with charts
replimap cost -r us-east-1 -f html -o cost-report.html
# Export to CSV for spreadsheet analysis
replimap cost -r us-east-1 -f csv -o costs.csv
# Export to JSON for automation
replimap cost -r us-east-1 -f json -o costs.json
# Export to Markdown report
replimap cost -r us-east-1 -f markdown -o costs.md
# Skip confirmation prompt for exports
replimap cost -r us-east-1 -f html -o report.html --acknowledge
Output Formats
| Format | Description |
|---|---|
console |
Rich terminal output with summary (default) |
table |
Full table of all resource costs |
html |
Interactive HTML report with Chart.js |
json |
Machine-readable JSON |
csv |
Spreadsheet-compatible CSV |
markdown |
Markdown report for documentation |
Estimate Accuracy
| Confidence | Range | Description |
|---|---|---|
| HIGH | ยฑ10% | Standard on-demand pricing |
| MEDIUM | ยฑ20% | Some usage assumptions |
| LOW | ยฑ40% | Many factors unknown |
What's NOT Included
- Data transfer costs (can be 10-30% of bill)
- API request charges (S3, Lambda, API Gateway)
- Reserved Instance / Savings Plan discounts
- Spot Instance pricing
- Free tier benefits
- CloudWatch, CloudTrail fees
- Support plan costs
For accurate billing, use AWS Cost Explorer or AWS Pricing Calculator.
Cost Categories
| Category | Resources |
|---|---|
| COMPUTE | EC2, Lambda, ECS, EKS |
| DATABASE | RDS, DynamoDB, ElastiCache |
| STORAGE | S3, EBS, EFS |
| NETWORK | VPC, NAT Gateway, Load Balancer |
| SECURITY | IAM, KMS, WAF |
| MONITORING | CloudWatch, SNS, SQS |
Optimization Recommendations
The cost estimator provides actionable recommendations:
- Reserved Instances: ~40% savings for steady-state workloads
- Savings Plans: ~35% savings with flexibility
- gp2 to gp3 Migration: ~20% savings with better performance
- NAT Gateway Optimization: Consolidation opportunities
- Right-sizing: Instance type recommendations
Output Formats
| Format | Plan Required | Status |
|---|---|---|
| Terraform HCL | Free+ | โ Available |
| CloudFormation YAML | Solo+ | โ Available |
| Pulumi Python | Pro+ | โ Available |
Supported Resources (24 Types)
Core Infrastructure
| Resource Type | Scan | Transform | Generate |
|---|---|---|---|
| VPC | โ | โ | โ |
| Subnets | โ | โ | โ |
| Security Groups | โ | โ | โ |
| Internet Gateway | โ | โ | โ |
| NAT Gateway | โ | โ | โ |
| Route Tables | โ | โ | โ |
| VPC Endpoints | โ | โ | โ |
Compute
| Resource Type | Scan | Transform | Generate |
|---|---|---|---|
| EC2 Instances | โ | โ | โ |
| Launch Templates | โ | โ | โ |
| Auto Scaling Groups | โ | โ | โ |
| Application Load Balancers | โ | โ | โ |
| Network Load Balancers | โ | โ | โ |
| Target Groups | โ | โ | โ |
| LB Listeners | โ | โ | โ |
Database
| Resource Type | Scan | Transform | Generate |
|---|---|---|---|
| RDS Instances | โ | โ | โ |
| DB Subnet Groups | โ | โ | โ |
| DB Parameter Groups | โ | โ | โ |
| ElastiCache Clusters | โ | โ | โ |
| ElastiCache Subnet Groups | โ | โ | โ |
Storage & Messaging
| Resource Type | Scan | Transform | Generate |
|---|---|---|---|
| S3 Buckets | โ | โ | โ |
| S3 Bucket Policies | โ | โ | โ |
| EBS Volumes | โ | โ | โ |
| SQS Queues | โ | โ | โ |
| SNS Topics | โ | โ | โ |
Pricing
| Plan | Monthly | Resources/Scan | Scans/Month | AWS Accounts |
|---|---|---|---|---|
| Free | $0 | 5 | 3 | 1 |
| Solo | $49 | Unlimited | Unlimited | 1 |
| Pro | $99 | Unlimited | Unlimited | 3 |
| Team | $199 | Unlimited | Unlimited | 10 |
| Enterprise | $499+ | Unlimited | Unlimited | Unlimited |
Feature Matrix
| Feature | Free | Solo | Pro | Team | Enterprise |
|---|---|---|---|---|---|
| Terraform Output | โ | โ | โ | โ | โ |
| CloudFormation Output | โ | โ | โ | โ | โ |
| Pulumi Output | โ | โ | โ | โ | โ |
| Async Scanning | โ | โ | โ | โ | โ |
| Custom Templates | โ | โ | โ | โ | โ |
| Dependency Explorer | โ | โ | โ | โ | โ |
| Cost Estimation | โ | โ | โ | โ | โ |
| Web Dashboard | โ | โ | โ | โ | โ |
| Team Collaboration | โ | โ | โ | โ | โ |
| SSO Integration | โ | โ | โ | โ | โ |
| Audit Logs | โ | โ | โ | โ | โ |
License Management
License keys use the format RM-XXXX-XXXX-XXXX-XXXX (RM prefix for RepliMap brand).
# Activate a license key
replimap license activate RM-XXXX-XXXX-XXXX-XXXX
# Check current status
replimap license status
# View usage statistics
replimap license usage
# Deactivate license
replimap license deactivate --yes
CLI Reference
# Show version
replimap --version
# Scan command
replimap scan [OPTIONS]
--profile, -p TEXT AWS profile name
--region, -r TEXT AWS region to scan [default: us-east-1]
--output, -o PATH Output path for graph JSON
--verbose, -V Enable verbose logging
# Clone command
replimap clone [OPTIONS]
--profile, -p TEXT AWS source profile name
--region, -r TEXT AWS region to scan [default: us-east-1]
--output-dir, -o PATH Output directory [default: ./terraform]
--mode, -m TEXT Mode: 'dry-run' or 'generate' [default: dry-run]
--downsize/--no-downsize Enable instance downsizing [default: downsize]
--rename-pattern TEXT Renaming pattern, e.g., 'prod:stage'
# Load command
replimap load GRAPH_FILE
# Audit command (security scanning)
replimap audit [OPTIONS]
--profile, -p TEXT AWS profile name
--region, -r TEXT AWS region [default: us-east-1]
--scope, -s TEXT Scope to VPC (e.g., vpc:vpc-xxx or vpc-name:Production)
--format, -f TEXT Output format: console, html, json [default: console]
--output, -o PATH Output file path
--ci CI mode (exit code reflects findings)
# Graph command (visualization)
replimap graph [OPTIONS]
--profile, -p TEXT AWS profile name
--region, -r TEXT AWS region [default: us-east-1]
--scope, -s TEXT Scope to VPC
--format, -f TEXT Output format: mermaid, html, json [default: mermaid]
--output, -o PATH Output file path
# Drift command (state comparison)
replimap drift [OPTIONS]
--profile, -p TEXT AWS profile name
--region, -r TEXT AWS region [default: us-east-1]
--state PATH Local terraform.tfstate file path
--remote-bucket TEXT S3 bucket for remote state
--remote-key TEXT S3 key for remote state
--remote-region TEXT S3 bucket region
--scope, -s TEXT Scope to VPC
--format, -f TEXT Output format: console, html, json [default: console]
--output, -o PATH Output file path
--ci CI mode (exit code reflects drift status)
# Dependency explorer command (impact analysis, Pro+)
# Note: Based on AWS API metadata only. Application-level deps not detected.
replimap deps RESOURCE_ID [OPTIONS]
--profile, -p TEXT AWS profile name
--region, -r TEXT AWS region [default: us-east-1]
--vpc, -v TEXT VPC ID to scope the scan
--depth, -d INT Maximum depth to traverse [default: 10]
--format, -f TEXT Output format: console, tree, table, html, json [default: console]
--output, -o PATH Output file path
--open/--no-open Open HTML report in browser [default: open]
# Cost estimation command (Pro+)
replimap cost [OPTIONS]
--profile, -p TEXT AWS profile name
--region, -r TEXT AWS region [default: us-east-1]
--vpc, -v TEXT VPC ID to scope the scan
--format, -f TEXT Output format: console, table, html, json, csv [default: console]
--output, -o PATH Output file path
--open/--no-open Open HTML report in browser [default: open]
# License commands
replimap license activate KEY
replimap license status
replimap license usage
replimap license deactivate [--yes]
# Credential cache management
replimap cache status # Show cached credentials
replimap cache clear # Clear credential cache
# List AWS profiles
replimap profiles
Configuration
Environment Variables
| Variable | Default | Description |
|---|---|---|
REPLIMAP_DEV_MODE |
false |
Enable dev mode (bypasses license limits) |
REPLIMAP_LICENSE_API |
https://replimap-api... |
License validation API URL |
REPLIMAP_MAX_WORKERS |
4 |
Max parallel scanner threads |
REPLIMAP_MAX_RETRIES |
5 |
Max retries for AWS rate limiting |
REPLIMAP_RETRY_DELAY |
1.0 |
Base delay (seconds) for retry backoff |
REPLIMAP_MAX_DELAY |
30.0 |
Maximum delay (seconds) between retries |
Dev Mode
For local development and testing, enable dev mode to bypass license restrictions:
# Enable dev mode (unlimited resources, parallel scanning, all outputs)
export REPLIMAP_DEV_MODE=1
# Or inline with command
REPLIMAP_DEV_MODE=1 replimap scan --profile prod
# Values accepted: 1, true, yes (case-insensitive)
AWS Credential Caching
RepliMap caches MFA-authenticated credentials for 12 hours to avoid repeated prompts:
# View cached credentials
replimap cache status
# Clear cache when switching accounts
replimap cache clear
# Disable cache for a single command
replimap scan --profile prod --no-cache
Parallel Scanning
Scanners run in parallel for faster execution (requires Solo+ plan or dev mode):
- Default: 4 parallel workers
- Configure with
REPLIMAP_MAX_WORKERSenvironment variable - Free tier runs scanners sequentially
AWS Rate Limiting
Built-in retry with exponential backoff handles AWS throttling automatically:
- Retries on:
Throttling,RequestLimitExceeded,TooManyRequestsException, etc. - Exponential backoff: 1s โ 2s โ 4s โ 8s โ 16s (up to 30s max)
- Configurable via environment variables
Security
RepliMap is designed with security as a priority:
- Read-Only: Only requires read permissions to AWS resources
- Local Processing: All data processing happens on your machine
- No Data Upload: Your infrastructure data never leaves your environment
- Minimal Permissions: See IAM_POLICY.md for recommended policy
Architecture
RepliMap uses a graph-based engine:
โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโ
โ Scanners โโโโโถโ Graph Engineโโโโโถโ Transformers โโโโโถโ Renderers โ
โ (AWS API) โ โ (NetworkX) โ โ (Pipeline) โ โ(Terraform) โ
โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโ
- Scanners: Query AWS APIs for VPC, EC2, RDS, S3 resources
- Graph Engine: Build dependency graph with NetworkX
- Transformers: Apply sanitization, downsizing, renaming
- Renderers: Generate Terraform/CloudFormation/Pulumi code
Development
# Clone repository
git clone https://github.com/replimap/replimap.git
cd replimap
# Install with uv (recommended)
uv sync --all-extras --dev
# Run tests
uv run pytest tests/ -v
# Format code
uv run ruff format .
# Lint code
uv run ruff check .
# Type checking
uv run mypy replimap
Project Structure
replimap/
โโโ replimap/
โ โโโ __init__.py
โ โโโ main.py # Typer CLI entry point
โ โโโ core/
โ โ โโโ graph_engine.py # NetworkX graph wrapper
โ โ โโโ models.py # ResourceNode dataclass
โ โโโ scanners/
โ โ โโโ base.py # Scanner base class
โ โ โโโ async_base.py # Async scanner support
โ โ โโโ vpc_scanner.py # VPC/Subnet/SG scanner
โ โ โโโ ec2_scanner.py # EC2 scanner
โ โ โโโ s3_scanner.py # S3 scanner
โ โ โโโ rds_scanner.py # RDS scanner
โ โ โโโ networking_scanner.py # IGW/NAT/Route Tables
โ โ โโโ compute_scanner.py # ALB/ASG/Launch Templates
โ โ โโโ elasticache_scanner.py # ElastiCache clusters
โ โ โโโ storage_scanner.py # EBS/S3 policies
โ โ โโโ messaging_scanner.py # SQS/SNS
โ โโโ transformers/
โ โ โโโ base.py # Transformer pipeline
โ โ โโโ sanitizer.py # Sensitive data removal
โ โ โโโ downsizer.py # Instance size reduction
โ โ โโโ renamer.py # Environment renaming
โ โ โโโ network_remapper.py # Reference updates
โ โโโ renderers/
โ โ โโโ terraform.py # Terraform HCL (Free+)
โ โ โโโ cloudformation.py # CloudFormation (Solo+)
โ โ โโโ pulumi.py # Pulumi Python (Pro+)
โ โโโ audit/ # Security auditing
โ โ โโโ auditor.py # Checkov integration
โ โ โโโ renderer.py # Console/HTML/JSON output
โ โ โโโ templates/ # Jinja2 HTML templates
โ โโโ graph/ # Infrastructure visualization
โ โ โโโ visualizer.py # Graph building
โ โ โโโ formatters/ # Mermaid, JSON, D3.js formatters
โ โ โโโ templates/ # D3.js HTML template
โ โโโ drift/ # Drift detection
โ โ โโโ engine.py # Detection orchestration
โ โ โโโ state_parser.py # Terraform state parsing
โ โ โโโ comparator.py # Resource comparison
โ โ โโโ reporter.py # Report generation
โ โ โโโ templates/ # HTML report template
โ โโโ dependencies/ # Dependency exploration (formerly blast/)
โ โ โโโ models.py # ResourceNode, DependencyZone, etc.
โ โ โโโ graph_builder.py # Dependency graph building
โ โ โโโ impact_calculator.py # Impact score estimation
โ โ โโโ reporter.py # Console/HTML/JSON output (with disclaimers)
โ โโโ cost/ # Cost estimation
โ โ โโโ models.py # ResourceCost, CostEstimate
โ โ โโโ pricing.py # AWS pricing data
โ โ โโโ estimator.py # Cost calculation engine
โ โ โโโ reporter.py # Console/HTML/CSV output
โ โโโ licensing/
โ โโโ manager.py # License management
โ โโโ gates.py # Feature gating
โ โโโ tracker.py # Usage tracking
โโโ templates/ # Jinja2 templates
โโโ tests/ # pytest test suite
โโโ .github/workflows/ # CI/CD
โโโ pyproject.toml
โโโ README.md
Support
- Documentation: https://docs.replimap.io
- Issues: GitHub Issues
- Email: support@replimap.io
License
Proprietary - See LICENSE for details.
Copyright (c) 2025 RepliMap
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
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 replimap-0.1.6.tar.gz.
File metadata
- Download URL: replimap-0.1.6.tar.gz
- Upload date:
- Size: 260.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa89b2201f252c2180f59296da5af3f5bad5b005a301061fdd77e4c28c3f6f76
|
|
| MD5 |
a27fda0c638a22c34671b685cb28a0ac
|
|
| BLAKE2b-256 |
c20f4f931ab9ea60692e35d2d836d59fe4c12ae1bef199ec3aadeaebe68ac37d
|
Provenance
The following attestation bundles were made for replimap-0.1.6.tar.gz:
Publisher:
auto-release.yml on RepliMap/replimap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
replimap-0.1.6.tar.gz -
Subject digest:
aa89b2201f252c2180f59296da5af3f5bad5b005a301061fdd77e4c28c3f6f76 - Sigstore transparency entry: 774456281
- Sigstore integration time:
-
Permalink:
RepliMap/replimap@cb8f964d712c19c3071b99987e468fa0bdd29889 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RepliMap
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
auto-release.yml@cb8f964d712c19c3071b99987e468fa0bdd29889 -
Trigger Event:
push
-
Statement type:
File details
Details for the file replimap-0.1.6-py3-none-any.whl.
File metadata
- Download URL: replimap-0.1.6-py3-none-any.whl
- Upload date:
- Size: 320.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54198b7ab6f62885b53284c56cde871a7b18af3e5e2abf0921b52d65b87c118b
|
|
| MD5 |
4b725410f241a7094cf02dc1ea8c27ba
|
|
| BLAKE2b-256 |
bdb11338cc62933698145443636acf80be7c28be5849d86679166538e9667360
|
Provenance
The following attestation bundles were made for replimap-0.1.6-py3-none-any.whl:
Publisher:
auto-release.yml on RepliMap/replimap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
replimap-0.1.6-py3-none-any.whl -
Subject digest:
54198b7ab6f62885b53284c56cde871a7b18af3e5e2abf0921b52d65b87c118b - Sigstore transparency entry: 774456282
- Sigstore integration time:
-
Permalink:
RepliMap/replimap@cb8f964d712c19c3071b99987e468fa0bdd29889 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/RepliMap
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
auto-release.yml@cb8f964d712c19c3071b99987e468fa0bdd29889 -
Trigger Event:
push
-
Statement type: