Skip to content

lbajolet-hashicorp/packer-plugin-external

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Packer external data source plugin

A plugin for Packer which provides access to external commands. Compatible with Packer >= 1.7.0

Usage

packer {
  required_plugins {
    external = {
      version = ">= 0.0.2"
      source  = "github.com/joomcode/external"
    }
  }
}

data "external" "example" {
  program = ["jq", "{ \"foo\": .key1 }"]
  query = {
    key1 = "val1"
  }
}

data "external-raw" "example" {
  program = ["rev"]
  query   = "hello"
}

locals {
  external_result = data.external.example.result["foo"] # "val1"
  raw_result      = data.external-raw.example.result # "olleh\n"
}

See docs for more detailed information.

Running Acceptance Tests

make testacc

This will run the acceptance tests for all plugins in this set.

Requirements

  • Go >= 1.17

About

Packer plugin for communicating with external programs

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 78.5%
  • HCL 12.9%
  • Makefile 8.6%