deterministic_zip
A tool to generate consistent zip files (useful for terraform updates of aws lambda functions).
File Explorer
- __init__.py
- .gitignore
- .pre-commit-config.yaml
- .travis.yml
- LICENSE.txt
- MANIFEST.in
- pyproject.toml
- README.md
- setup.py
- test_deterministic_zip.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
sha256sum
View Details ▼
sha256sum
Calculate SHA256 cryptographic checksums.
sha256sum {{path/to/file1 path/to/file2 ...}}
Calculate the SHA256 checksum for one or more files:
sha256sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha256}}
Calculate and save the list of SHA256 checksums to a file:
{{command}} | sha256sum
Calculate a SHA256 checksum from `stdin`:
terraform apply
View Details ▼
terraform apply
Create or update infrastructure according to Terraform configuration files.
terraform apply
Create or update infrastructure:
terraform apply -auto-approve
Create or update infrastructure, skipping interactive approval:
terraform apply {{path/to/file.tfplan}}
Apply a plan file:
