|
|
|
|
@ -2,6 +2,7 @@ package remoteexec
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bytes"
|
|
|
|
|
"context"
|
|
|
|
|
"fmt"
|
|
|
|
|
"io"
|
|
|
|
|
"io/ioutil"
|
|
|
|
|
@ -11,26 +12,53 @@ import (
|
|
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/communicator"
|
|
|
|
|
"github.com/hashicorp/terraform/communicator/remote"
|
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
|
"github.com/mitchellh/go-linereader"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// ResourceProvisioner represents a remote exec provisioner
|
|
|
|
|
type ResourceProvisioner struct{}
|
|
|
|
|
func Provisioner() terraform.ResourceProvisioner {
|
|
|
|
|
return &schema.Provisioner{
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
|
"inline": &schema.Schema{
|
|
|
|
|
Type: schema.TypeList,
|
|
|
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
|
|
|
Optional: true,
|
|
|
|
|
ConflictsWith: []string{"script", "scripts"},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"script": &schema.Schema{
|
|
|
|
|
Type: schema.TypeString,
|
|
|
|
|
Optional: true,
|
|
|
|
|
ConflictsWith: []string{"inline", "scripts"},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"scripts": &schema.Schema{
|
|
|
|
|
Type: schema.TypeList,
|
|
|
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
|
|
|
Optional: true,
|
|
|
|
|
ConflictsWith: []string{"script", "inline"},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
ApplyFunc: applyFn,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Apply executes the remote exec provisioner
|
|
|
|
|
func (p *ResourceProvisioner) Apply(
|
|
|
|
|
o terraform.UIOutput,
|
|
|
|
|
s *terraform.InstanceState,
|
|
|
|
|
c *terraform.ResourceConfig) error {
|
|
|
|
|
func applyFn(ctx context.Context) error {
|
|
|
|
|
connState := ctx.Value(schema.ProvRawStateKey).(*terraform.InstanceState)
|
|
|
|
|
data := ctx.Value(schema.ProvConfigDataKey).(*schema.ResourceData)
|
|
|
|
|
o := ctx.Value(schema.ProvOutputKey).(terraform.UIOutput)
|
|
|
|
|
|
|
|
|
|
// Get a new communicator
|
|
|
|
|
comm, err := communicator.New(s)
|
|
|
|
|
comm, err := communicator.New(connState)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Collect the scripts
|
|
|
|
|
scripts, err := p.collectScripts(c)
|
|
|
|
|
scripts, err := collectScripts(data)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
@ -39,67 +67,33 @@ func (p *ResourceProvisioner) Apply(
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Copy and execute each script
|
|
|
|
|
if err := p.runScripts(o, comm, scripts); err != nil {
|
|
|
|
|
if err := runScripts(o, comm, scripts); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Validate checks if the required arguments are configured
|
|
|
|
|
func (p *ResourceProvisioner) Validate(c *terraform.ResourceConfig) (ws []string, es []error) {
|
|
|
|
|
num := 0
|
|
|
|
|
for name := range c.Raw {
|
|
|
|
|
switch name {
|
|
|
|
|
case "scripts", "script", "inline":
|
|
|
|
|
num++
|
|
|
|
|
default:
|
|
|
|
|
es = append(es, fmt.Errorf("Unknown configuration '%s'", name))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if num != 1 {
|
|
|
|
|
es = append(es, fmt.Errorf("Must provide one of 'scripts', 'script' or 'inline' to remote-exec"))
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// generateScripts takes the configuration and creates a script from each inline config
|
|
|
|
|
func (p *ResourceProvisioner) generateScripts(c *terraform.ResourceConfig) ([]string, error) {
|
|
|
|
|
func generateScripts(d *schema.ResourceData) ([]string, error) {
|
|
|
|
|
var scripts []string
|
|
|
|
|
command, ok := c.Config["inline"]
|
|
|
|
|
if ok {
|
|
|
|
|
switch cmd := command.(type) {
|
|
|
|
|
case string:
|
|
|
|
|
scripts = append(scripts, cmd)
|
|
|
|
|
case []string:
|
|
|
|
|
scripts = append(scripts, cmd...)
|
|
|
|
|
case []interface{}:
|
|
|
|
|
for _, l := range cmd {
|
|
|
|
|
lStr, ok := l.(string)
|
|
|
|
|
if ok {
|
|
|
|
|
scripts = append(scripts, lStr)
|
|
|
|
|
} else {
|
|
|
|
|
return nil, fmt.Errorf("Unsupported 'inline' type! Must be string, or list of strings.")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
return nil, fmt.Errorf("Unsupported 'inline' type! Must be string, or list of strings.")
|
|
|
|
|
}
|
|
|
|
|
for _, l := range d.Get("inline").([]interface{}) {
|
|
|
|
|
scripts = append(scripts, l.(string))
|
|
|
|
|
}
|
|
|
|
|
return scripts, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// collectScripts is used to collect all the scripts we need
|
|
|
|
|
// to execute in preparation for copying them.
|
|
|
|
|
func (p *ResourceProvisioner) collectScripts(c *terraform.ResourceConfig) ([]io.ReadCloser, error) {
|
|
|
|
|
func collectScripts(d *schema.ResourceData) ([]io.ReadCloser, error) {
|
|
|
|
|
// Check if inline
|
|
|
|
|
_, ok := c.Config["inline"]
|
|
|
|
|
if ok {
|
|
|
|
|
scripts, err := p.generateScripts(c)
|
|
|
|
|
if _, ok := d.GetOk("inline"); ok {
|
|
|
|
|
scripts, err := generateScripts(d)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
r := []io.ReadCloser{}
|
|
|
|
|
var r []io.ReadCloser
|
|
|
|
|
for _, script := range scripts {
|
|
|
|
|
r = append(r, ioutil.NopCloser(bytes.NewReader([]byte(script))))
|
|
|
|
|
}
|
|
|
|
|
@ -109,31 +103,13 @@ func (p *ResourceProvisioner) collectScripts(c *terraform.ResourceConfig) ([]io.
|
|
|
|
|
|
|
|
|
|
// Collect scripts
|
|
|
|
|
var scripts []string
|
|
|
|
|
s, ok := c.Config["script"]
|
|
|
|
|
if ok {
|
|
|
|
|
sStr, ok := s.(string)
|
|
|
|
|
if !ok {
|
|
|
|
|
return nil, fmt.Errorf("Unsupported 'script' type! Must be a string.")
|
|
|
|
|
}
|
|
|
|
|
scripts = append(scripts, sStr)
|
|
|
|
|
if script, ok := d.GetOk("script"); ok {
|
|
|
|
|
scripts = append(scripts, script.(string))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sl, ok := c.Config["scripts"]
|
|
|
|
|
if ok {
|
|
|
|
|
switch slt := sl.(type) {
|
|
|
|
|
case []string:
|
|
|
|
|
scripts = append(scripts, slt...)
|
|
|
|
|
case []interface{}:
|
|
|
|
|
for _, l := range slt {
|
|
|
|
|
lStr, ok := l.(string)
|
|
|
|
|
if ok {
|
|
|
|
|
scripts = append(scripts, lStr)
|
|
|
|
|
} else {
|
|
|
|
|
return nil, fmt.Errorf("Unsupported 'scripts' type! Must be list of strings.")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
return nil, fmt.Errorf("Unsupported 'scripts' type! Must be list of strings.")
|
|
|
|
|
if scriptList, ok := d.GetOk("scripts"); ok {
|
|
|
|
|
for _, script := range scriptList.([]interface{}) {
|
|
|
|
|
scripts = append(scripts, script.(string))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -155,7 +131,7 @@ func (p *ResourceProvisioner) collectScripts(c *terraform.ResourceConfig) ([]io.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// runScripts is used to copy and execute a set of scripts
|
|
|
|
|
func (p *ResourceProvisioner) runScripts(
|
|
|
|
|
func runScripts(
|
|
|
|
|
o terraform.UIOutput,
|
|
|
|
|
comm communicator.Communicator,
|
|
|
|
|
scripts []io.ReadCloser) error {
|
|
|
|
|
@ -175,8 +151,8 @@ func (p *ResourceProvisioner) runScripts(
|
|
|
|
|
errR, errW := io.Pipe()
|
|
|
|
|
outDoneCh := make(chan struct{})
|
|
|
|
|
errDoneCh := make(chan struct{})
|
|
|
|
|
go p.copyOutput(o, outR, outDoneCh)
|
|
|
|
|
go p.copyOutput(o, errR, errDoneCh)
|
|
|
|
|
go copyOutput(o, outR, outDoneCh)
|
|
|
|
|
go copyOutput(o, errR, errDoneCh)
|
|
|
|
|
|
|
|
|
|
remotePath := comm.ScriptPath()
|
|
|
|
|
err = retryFunc(comm.Timeout(), func() error {
|
|
|
|
|
@ -225,7 +201,7 @@ func (p *ResourceProvisioner) runScripts(
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p *ResourceProvisioner) copyOutput(
|
|
|
|
|
func copyOutput(
|
|
|
|
|
o terraform.UIOutput, r io.Reader, doneCh chan<- struct{}) {
|
|
|
|
|
defer close(doneCh)
|
|
|
|
|
lr := linereader.New(r)
|
|
|
|
|
|