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.Git

Documentation

class MonadGit m where Source #

Methods

gitAdd :: Text -> m () Source #

gitCommit :: Text -> m () Source #

gitPush :: m () Source #

gitPull :: m () Source #

gitRm :: Text -> m () Source #

Instances

Instances details
MonadIO m => MonadGit (AppT m) Source # 
Instance details

Defined in Terraform.HttpBackend.Pass.App

Methods

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

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

gitPush :: AppT m () Source #

gitPull :: AppT m () Source #

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