Module gcip.addons.security.sops
Functions
def sops_export_decrypted_values(path: str, *, install_sops: bool = True, download_url: str = 'https://github.com/mozilla/sops/releases/download/v3.7.1/sops-v.3.7.1.linux') ‑> List[str]
-
Returns a helper string to be embedded into jobs to allow exporting values which are decrypted by
sops
. e.g. 'export $(sops -d sops/encrypted_file.env)'This function is usefull, if you want to use environment variables to login to e.g. a container registry.
The script is successfully tested with SOPS 3.7 and knowingly NOT WORKING with SOPS 3.6, as in the latter version is a bug which wraps the values to export into quotes.
Args
path
:str
- Path to
sops
encrypted file, must be relative to project directory. install_sops
:bool
- Enable downloading
sops
from provideddownload_url
defaults to True. download_url
:str
- Download URL to download
sops
from. Defaults to Github mozilla sops releases.
Returns
List[str]
- Export string of sops decrypted file.