terraform-http-backend-pass-0.1.0.1: HTTP backend to store terraform state using pass and git
Safe HaskellSafe-Inferred
LanguageHaskell2010

Terraform.HttpBackend.Pass.Crypt

Documentation

class MonadPass m where Source #

Methods

encrypt :: Text -> Text -> m () Source #

decrypt :: Text -> m Text Source #

purge :: Text -> m () Source #

exists :: Text -> m Bool Source #

Instances

Instances details
(Monad m, MonadIO m) => MonadPass (AppT m) Source # 
Instance details

Defined in Terraform.HttpBackend.Pass.App

Methods

encrypt :: Text -> Text -> AppT m () Source #

decrypt :: Text -> AppT m Text Source #

purge :: Text -> AppT m () Source #

exists :: Text -> AppT m Bool Source #