dhall-1.31.0: A configuration language guaranteed to terminate

Safe HaskellNone
LanguageHaskell2010

Dhall.Freeze

Contents

Description

This module contains the implementation of the dhall freeze subcommand

Synopsis

Freeze

freeze :: OutputMode -> Input -> Scope -> Intent -> CharacterSet -> Censor -> IO () Source #

Implementation of the dhall freeze subcommand

freezeImport Source #

Arguments

:: FilePath

Current working directory

-> Import 
-> IO Import 

Retrieve an Import and update the hash to match the latest contents

freezeRemoteImport Source #

Arguments

:: FilePath

Current working directory

-> Import 
-> IO Import 

Freeze an import only if the import is a Remote import

Types

data Scope Source #

Specifies which imports to freeze

Constructors

OnlyRemoteImports

Freeze only remote imports (i.e. URLs)

AllImports

Freeze all imports (including paths and environment variables)

data Intent Source #

Specifies why we are adding semantic integrity checks

Constructors

Secure

Protect imports with an integrity check without a fallback so that import resolution fails if the import changes

Cache

Protect imports with an integrity check and also add a fallback import import without an integrity check. This is useful if you only want to cache imports when possible but still gracefully degrade to resolving them if the semantic integrity check has changed.