Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
3a066d53
Commit
3a066d53
authored
Jun 03, 2015
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2168 from mitchellh/sethvargo/aws
Migrate to new AWS repo
parents
6fca917e
33ca8b7f
Changes
29
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
40 additions
and
40 deletions
+40
-40
builder/amazon/chroot/builder.go
builder/amazon/chroot/builder.go
+1
-1
builder/amazon/chroot/step_attach_volume.go
builder/amazon/chroot/step_attach_volume.go
+1
-1
builder/amazon/chroot/step_check_root_device.go
builder/amazon/chroot/step_check_root_device.go
+1
-1
builder/amazon/chroot/step_create_volume.go
builder/amazon/chroot/step_create_volume.go
+1
-1
builder/amazon/chroot/step_instance_info.go
builder/amazon/chroot/step_instance_info.go
+1
-1
builder/amazon/chroot/step_mount_device.go
builder/amazon/chroot/step_mount_device.go
+1
-1
builder/amazon/chroot/step_register_ami.go
builder/amazon/chroot/step_register_ami.go
+2
-2
builder/amazon/chroot/step_register_ami_test.go
builder/amazon/chroot/step_register_ami_test.go
+2
-2
builder/amazon/chroot/step_snapshot.go
builder/amazon/chroot/step_snapshot.go
+1
-1
builder/amazon/common/access_config.go
builder/amazon/common/access_config.go
+2
-2
builder/amazon/common/artifact.go
builder/amazon/common/artifact.go
+2
-2
builder/amazon/common/block_device.go
builder/amazon/common/block_device.go
+2
-2
builder/amazon/common/block_device_test.go
builder/amazon/common/block_device_test.go
+2
-2
builder/amazon/common/ssh.go
builder/amazon/common/ssh.go
+1
-1
builder/amazon/common/state.go
builder/amazon/common/state.go
+2
-2
builder/amazon/common/step_ami_region_copy.go
builder/amazon/common/step_ami_region_copy.go
+1
-1
builder/amazon/common/step_create_tags.go
builder/amazon/common/step_create_tags.go
+2
-2
builder/amazon/common/step_key_pair.go
builder/amazon/common/step_key_pair.go
+1
-1
builder/amazon/common/step_modify_ami_attributes.go
builder/amazon/common/step_modify_ami_attributes.go
+2
-2
builder/amazon/common/step_run_source_instance.go
builder/amazon/common/step_run_source_instance.go
+2
-2
builder/amazon/common/step_security_group.go
builder/amazon/common/step_security_group.go
+2
-2
builder/amazon/common/step_source_ami_info.go
builder/amazon/common/step_source_ami_info.go
+1
-1
builder/amazon/ebs/builder.go
builder/amazon/ebs/builder.go
+1
-1
builder/amazon/ebs/step_create_ami.go
builder/amazon/ebs/step_create_ami.go
+1
-1
builder/amazon/ebs/step_modify_instance.go
builder/amazon/ebs/step_modify_instance.go
+1
-1
builder/amazon/ebs/step_stop_instance.go
builder/amazon/ebs/step_stop_instance.go
+1
-1
builder/amazon/instance/builder.go
builder/amazon/instance/builder.go
+1
-1
builder/amazon/instance/step_bundle_volume.go
builder/amazon/instance/step_bundle_volume.go
+1
-1
builder/amazon/instance/step_register_ami.go
builder/amazon/instance/step_register_ami.go
+1
-1
No files found.
builder/amazon/chroot/builder.go
View file @
3a066d53
...
@@ -9,7 +9,7 @@ import (
...
@@ -9,7 +9,7 @@ import (
"log"
"log"
"runtime"
"runtime"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/common"
"github.com/mitchellh/packer/common"
...
...
builder/amazon/chroot/step_attach_volume.go
View file @
3a066d53
...
@@ -6,7 +6,7 @@ import (
...
@@ -6,7 +6,7 @@ import (
"strings"
"strings"
"time"
"time"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_check_root_device.go
View file @
3a066d53
...
@@ -3,7 +3,7 @@ package chroot
...
@@ -3,7 +3,7 @@ package chroot
import
(
import
(
"fmt"
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
)
)
...
...
builder/amazon/chroot/step_create_volume.go
View file @
3a066d53
...
@@ -4,7 +4,7 @@ import (
...
@@ -4,7 +4,7 @@ import (
"fmt"
"fmt"
"log"
"log"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_instance_info.go
View file @
3a066d53
...
@@ -4,7 +4,7 @@ import (
...
@@ -4,7 +4,7 @@ import (
"fmt"
"fmt"
"log"
"log"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_mount_device.go
View file @
3a066d53
...
@@ -7,7 +7,7 @@ import (
...
@@ -7,7 +7,7 @@ import (
"os"
"os"
"path/filepath"
"path/filepath"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/template/interpolate"
"github.com/mitchellh/packer/template/interpolate"
...
...
builder/amazon/chroot/step_register_ami.go
View file @
3a066d53
...
@@ -3,8 +3,8 @@ package chroot
...
@@ -3,8 +3,8 @@ package chroot
import
(
import
(
"fmt"
"fmt"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/chroot/step_register_ami_test.go
View file @
3a066d53
...
@@ -3,8 +3,8 @@ package chroot
...
@@ -3,8 +3,8 @@ package chroot
import
(
import
(
"testing"
"testing"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
)
)
func
testImage
()
ec2
.
Image
{
func
testImage
()
ec2
.
Image
{
...
...
builder/amazon/chroot/step_snapshot.go
View file @
3a066d53
...
@@ -5,7 +5,7 @@ import (
...
@@ -5,7 +5,7 @@ import (
"fmt"
"fmt"
"time"
"time"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/common/access_config.go
View file @
3a066d53
...
@@ -7,8 +7,8 @@ import (
...
@@ -7,8 +7,8 @@ import (
"strings"
"strings"
"unicode"
"unicode"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/mitchellh/packer/template/interpolate"
"github.com/mitchellh/packer/template/interpolate"
)
)
...
...
builder/amazon/common/artifact.go
View file @
3a066d53
...
@@ -6,8 +6,8 @@ import (
...
@@ -6,8 +6,8 @@ import (
"sort"
"sort"
"strings"
"strings"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
)
)
...
...
builder/amazon/common/block_device.go
View file @
3a066d53
package
common
package
common
import
(
import
(
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/packer/template/interpolate"
"github.com/mitchellh/packer/template/interpolate"
)
)
...
...
builder/amazon/common/block_device_test.go
View file @
3a066d53
...
@@ -4,8 +4,8 @@ import (
...
@@ -4,8 +4,8 @@ import (
"reflect"
"reflect"
"testing"
"testing"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
)
)
func
TestBlockDevice
(
t
*
testing
.
T
)
{
func
TestBlockDevice
(
t
*
testing
.
T
)
{
...
...
builder/amazon/common/ssh.go
View file @
3a066d53
...
@@ -5,7 +5,7 @@ import (
...
@@ -5,7 +5,7 @@ import (
"fmt"
"fmt"
"time"
"time"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh"
)
)
...
...
builder/amazon/common/state.go
View file @
3a066d53
...
@@ -9,8 +9,8 @@ import (
...
@@ -9,8 +9,8 @@ import (
"strconv"
"strconv"
"time"
"time"
"github.com/aws
labs
/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
)
)
...
...
builder/amazon/common/step_ami_region_copy.go
View file @
3a066d53
...
@@ -5,7 +5,7 @@ import (
...
@@ -5,7 +5,7 @@ import (
"sync"
"sync"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/common/step_create_tags.go
View file @
3a066d53
...
@@ -3,8 +3,8 @@ package common
...
@@ -3,8 +3,8 @@ package common
import
(
import
(
"fmt"
"fmt"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
)
)
...
...
builder/amazon/common/step_key_pair.go
View file @
3a066d53
...
@@ -6,7 +6,7 @@ import (
...
@@ -6,7 +6,7 @@ import (
"os"
"os"
"runtime"
"runtime"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
)
)
...
...
builder/amazon/common/step_modify_ami_attributes.go
View file @
3a066d53
...
@@ -3,8 +3,8 @@ package common
...
@@ -3,8 +3,8 @@ package common
import
(
import
(
"fmt"
"fmt"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
)
)
...
...
builder/amazon/common/step_run_source_instance.go
View file @
3a066d53
...
@@ -7,8 +7,8 @@ import (
...
@@ -7,8 +7,8 @@ import (
"strconv"
"strconv"
"time"
"time"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/common/step_security_group.go
View file @
3a066d53
...
@@ -5,8 +5,8 @@ import (
...
@@ -5,8 +5,8 @@ import (
"log"
"log"
"time"
"time"
"github.com/aws
labs
/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/common/uuid"
"github.com/mitchellh/packer/common/uuid"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/common/step_source_ami_info.go
View file @
3a066d53
...
@@ -3,7 +3,7 @@ package common
...
@@ -3,7 +3,7 @@ package common
import
(
import
(
"fmt"
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
)
)
...
...
builder/amazon/ebs/builder.go
View file @
3a066d53
...
@@ -9,7 +9,7 @@ import (
...
@@ -9,7 +9,7 @@ import (
"fmt"
"fmt"
"log"
"log"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/common"
"github.com/mitchellh/packer/common"
...
...
builder/amazon/ebs/step_create_ami.go
View file @
3a066d53
...
@@ -3,7 +3,7 @@ package ebs
...
@@ -3,7 +3,7 @@ package ebs
import
(
import
(
"fmt"
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/ebs/step_modify_instance.go
View file @
3a066d53
...
@@ -3,7 +3,7 @@ package ebs
...
@@ -3,7 +3,7 @@ package ebs
import
(
import
(
"fmt"
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
)
)
...
...
builder/amazon/ebs/step_stop_instance.go
View file @
3a066d53
...
@@ -3,7 +3,7 @@ package ebs
...
@@ -3,7 +3,7 @@ package ebs
import
(
import
(
"fmt"
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
builder/amazon/instance/builder.go
View file @
3a066d53
...
@@ -9,7 +9,7 @@ import (
...
@@ -9,7 +9,7 @@ import (
"os"
"os"
"strings"
"strings"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/common"
"github.com/mitchellh/packer/common"
...
...
builder/amazon/instance/step_bundle_volume.go
View file @
3a066d53
...
@@ -3,7 +3,7 @@ package instance
...
@@ -3,7 +3,7 @@ package instance
import
(
import
(
"fmt"
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/template/interpolate"
"github.com/mitchellh/packer/template/interpolate"
...
...
builder/amazon/instance/step_register_ami.go
View file @
3a066d53
...
@@ -3,7 +3,7 @@ package instance
...
@@ -3,7 +3,7 @@ package instance
import
(
import
(
"fmt"
"fmt"
"github.com/aws
labs
/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/mitchellh/multistep"
"github.com/mitchellh/multistep"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
awscommon
"github.com/mitchellh/packer/builder/amazon/common"
"github.com/mitchellh/packer/packer"
"github.com/mitchellh/packer/packer"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment