Skip to content
This repository has been archived by the owner on Dec 1, 2020. It is now read-only.

Latest commit

 

History

History
57 lines (40 loc) · 1.93 KB

README.md

File metadata and controls

57 lines (40 loc) · 1.93 KB

terraform-provider-execute

Terraform plugin mostly based on https://github.com/gosuri/terraform-exec-provider (thanks!!!). Provides an ability to execute arbitrary commands on Terraform create and destroy.

Usage

resource "execute_command" "command" {
  command "/path/to/command"
  destroy_command "/path/to/command"
}

Attribute reference

  • command - (Required) Command to execute on terraform Create
  • destroy_command - (Optional) Command to execute on terraform destroy
  • only_if - (Optional) Guard attribute, to create the resource (Execute) the command only if this guard is satisfied. If the command returns 0, the guard is applied. If the command returns any other value, then the guard attribute is not applied.

Examples

The below example will create a 'testfile' file when you run 'terraform apply' and delete the 'testfile' file when you run 'terraform destroy'

resource "execute_command" "commands" {
  command = "touch testfile"
  destroy_command = "rm testfile"
}

Installation

$ git clone https://github.com/samsung-cnct/terraform-provider-execute.git
$ cd terraform-exec-provider
$ go get; go build

Then copy the resulting binary to where terraform binary is.

With Homebrew

$ brew tap 'samsung-cnct/terraform-provider-execute'
$ brew install terraform-provider-execute

Cutting release

This is a manual release process, we may automate it in the future if there is a need.

Steps:

  1. build linux executable: GOOS=linux GOARCH=amd64 go build
  2. tar linux executable tar -cf terraform-provider-execute_linux_amd64.tar terraform-provider-execute
  3. gzip linux executable gzip terraform-provider-execute_linux_amd64.tar
  4. repeat above for darwin build
  5. click 'Draft a new release' on releases page
  6. fill out form
  7. Add both tar.gz files

Reccomended:

  1. update https://github.com/samsung-cnct/homebrew-terraform-provider-execute with new version information