code16 / occulta
Store an encrypted with kms and versioned copy of .env
Requires
- php: ^8.3
- ext-openssl: *
- ext-zip: *
- ext-zlib: *
- aws/aws-sdk-php: ^3.222
- illuminate/contracts: ^11.0|^12.0
- laravel/prompts: ^0.3.5
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- code16/pint-config: ^1.2
- nunomaduro/collision: ^8.0
- orchestra/testbench: ^9.0|^10.0
- pestphp/pest: ^3.0
- pestphp/pest-plugin-laravel: ^3.0
- phpunit/phpunit: ^10.0|^11.0
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2025-06-23 14:57:37 UTC
README
Purpose
Save a versioned and encrypted copy of .env on a storage disk (eg: S3)
How it works
Occulta uses AWS KMS and Envelope encryption strategy to encrypt your .env
file and store it on a given laravel disk (eg: S3).
It also keeps a versioned history of your encrypted .env
files, so you can restore previous versions if needed.
Occulta will create an archive containing your encrypted environment file and an encrypted key file, which will be used by occulta to decrypt your env when needed.
Installation
This package requires Laravel 11.x or higher, php's extensions openssl and zip.
You can install the package via composer:
composer require code16/occulta
Next you should publish the config file :
php artisan vendor:publish --tag=occulta-config
and setup your values (especially the kms key_id
and destination disk
) in your config/occulta.php
file :
return [ // kms key id as seen in aws's kms dashboard (usually it looks like an uuid) 'key_id' => '0904c439-ff1f-4e9d-8a26-4e32ced6fe0x', [...] 'destination_disk' => 's3_backup', 'destination_path' => null, // defaults to 'dotenv/' // If you want to backup an env file with a suffix such as .env.production, you can set this to your desired suffix 'env_suffix' => null, // eg: 'production' [...] ];
Then, you should setup credentials to the proper aws user allowed to "use" the given kms key, by adding a kms section in your config/services.php
file :
'kms' => [ 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => 'eu-central-1', ],
Now you should schedule tasks for backup and cleanup in app/Console/Kernel.php
(bootstrap/app.php
since Laravel 11) :
protected function schedule(Schedule $schedule) { $schedule->command('occulta:encrypt')->dailyAt('01:00'); $schedule->command('occulta:clean')->dailyAt('02:00'); }
Decrypting an encrypted env archive
If you need to decrypt an encrypted env archive, you can use the occulta:decrypt
command:
php artisan occulta:decrypt path/to/encrypted/archive.zip
Occulta will use your KMS configuration and AWS access and secret keys to decrypt your env file.
Important
It is likely that these credentials where in your lost .env, then, you can follow the recovery procedure to restore your environment.
Testing
The package comes with a comprehensive test suite. To run the tests, you can use the following command:
composer test
The tests cover:
- The main
Occulta
class functionality for encrypting and decrypting values and files - The
EncryptFileWithKmsCommand
for encrypting .env files and storing them - The
DecryptFileWithKmsCommand
for extracting and decrypting .env files from zip archives - The
CleanupEncryptedDotenvsCommand
for managing the history of encrypted .env files
The tests use mocks for AWS KMS to avoid actual AWS calls during testing.