@ -2,11 +2,11 @@ package main
import (
import (
"fmt"
"fmt"
"github.com/Sirupsen/logrus"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/credentials/stscreds"
"github.com/aws/aws-sdk-go/aws/credentials/stscreds"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/sts"
"github.com/aws/aws-sdk-go/service/sts"
"github.com/Sirupsen/logrus"
"io/ioutil"
"io/ioutil"
"os"
"os"
"os/exec"
"os/exec"
@ -25,6 +25,7 @@ type (
RoleARN string
RoleARN string
RootDir string
RootDir string
Parallelism int
Parallelism int
Targets [ ] string
}
}
Remote struct {
Remote struct {
@ -52,9 +53,9 @@ func (p Plugin) Exec() error {
commands = append ( commands , remoteConfigCommand ( remote ) )
commands = append ( commands , remoteConfigCommand ( remote ) )
}
}
commands = append ( commands , getModules ( ) )
commands = append ( commands , getModules ( ) )
commands = append ( commands , planCommand ( p . Config . Vars , p . Config . Secrets , p . Config . Parallelism ) )
commands = append ( commands , planCommand ( p . Config . Vars , p . Config . Secrets , p . Config . Parallelism , p . Config . Targets ) )
if ! p . Config . Plan {
if ! p . Config . Plan {
commands = append ( commands , applyCommand ( p . Config . Parallelism ) )
commands = append ( commands , applyCommand ( p . Config . Parallelism , p . Config . Targets ) )
}
}
commands = append ( commands , deleteCache ( ) )
commands = append ( commands , deleteCache ( ) )
@ -123,11 +124,15 @@ func getModules() *exec.Cmd {
)
)
}
}
func planCommand ( variables map [ string ] string , secrets map [ string ] string , parallelism int ) * exec . Cmd {
func planCommand ( variables map [ string ] string , secrets map [ string ] string , parallelism int , targets [ ] string ) * exec . Cmd {
args := [ ] string {
args := [ ] string {
"plan" ,
"plan" ,
"-out=plan.tfout" ,
"-out=plan.tfout" ,
}
}
for _ , v := range targets {
args = append ( args , "--target" )
args = append ( args , fmt . Sprintf ( "%s" , v ) )
}
for k , v := range variables {
for k , v := range variables {
args = append ( args , "-var" )
args = append ( args , "-var" )
args = append ( args , fmt . Sprintf ( "%s=%s" , k , v ) )
args = append ( args , fmt . Sprintf ( "%s=%s" , k , v ) )
@ -145,10 +150,14 @@ func planCommand(variables map[string]string, secrets map[string]string, paralle
)
)
}
}
func applyCommand ( parallelism int ) * exec . Cmd {
func applyCommand ( parallelism int , targets [ ] string ) * exec . Cmd {
args := [ ] string {
args := [ ] string {
"apply" ,
"apply" ,
}
}
for _ , v := range targets {
args = append ( args , "--target" )
args = append ( args , fmt . Sprintf ( "%s" , v ) )
}
if parallelism > 0 {
if parallelism > 0 {
args = append ( args , fmt . Sprintf ( "-parallelism=%d" , parallelism ) )
args = append ( args , fmt . Sprintf ( "-parallelism=%d" , parallelism ) )
}
}