mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
Merge pull request #399 from chef/chris-rock/ec2-integration-test
ec2 integration test
This commit is contained in:
commit
554a9c19f0
2 changed files with 12 additions and 5 deletions
|
@ -230,7 +230,8 @@ bundle exec kitchen test
|
|||
```bash
|
||||
export AWS_ACCESS_KEY_ID=enteryouryourkey
|
||||
export AWS_SECRET_ACCESS_KEY=enteryoursecreykey
|
||||
export AWS_SSH_KEY_ID=enteryoursshkeyid
|
||||
export AWS_KEYPAIR_NAME=enteryoursshkeyid
|
||||
export EC2_SSH_KEY_PATH=~/.ssh/id_aws.pem
|
||||
cd test/integration
|
||||
KITCHEN_LOCAL_YAML=.kitchen.ec2.yml bundle exec kitchen test
|
||||
```
|
||||
|
|
|
@ -1,23 +1,29 @@
|
|||
driver:
|
||||
name: ec2
|
||||
region: eu-central-1
|
||||
instance_type: m3.large
|
||||
instance_type: m3.medium
|
||||
associate_public_ip: true
|
||||
security_group_ids: ["travis-ci"]
|
||||
interface: dns
|
||||
|
||||
transport:
|
||||
ssh_key: /path/to/aws.pem
|
||||
username: ec2-user
|
||||
ssh_key: <%= ENV['EC2_SSH_KEY_PATH'] %>
|
||||
|
||||
platforms:
|
||||
- name: windows-2008
|
||||
driver:
|
||||
image_id: ami-58918e34
|
||||
transport:
|
||||
username: administrator
|
||||
- name: windows-2012
|
||||
driver:
|
||||
image_id: ami-58f7fb45
|
||||
image_id: ami-44918e28
|
||||
transport:
|
||||
username: administrator
|
||||
- name: windows-2012r2
|
||||
driver:
|
||||
image_id: ami-f2f5f9ef
|
||||
image_id: ami-8a918ee6
|
||||
transport:
|
||||
username: administrator
|
||||
- name: suse-11sp3
|
||||
|
|
Loading…
Reference in a new issue