Skip to content

Commit 6befa75

Browse files
committed
Issue #110: Update lamp-infrastructure example to use CentOS 7 for DO and AWS.
1 parent 76d01c5 commit 6befa75

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lamp-infrastructure/provisioners/aws.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
inventory_host: "{{ item.name | default('') }}"
8181
group: "{{ item.security_group | default('') }}"
8282
instance_type: "{{ item.type | default('t2.micro')}}" # Free
83-
image: "{{ item.image | default('ami-11125e21') }}" # RHEL6
83+
image: "{{ item.image | default('ami-3ecc8f46') }}" # CentOS 7
8484
region: "{{ item.region | default('us-west-2') }}" # Oregon
8585
wait: yes
8686
wait_timeout: 500

lamp-infrastructure/provisioners/digitalocean.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
name: "{{ item.name }}"
2121
private_networking: yes
2222
size_id: "{{ item.size | default('s-1vcpu-1gb') }}"
23-
image_id: "{{ item.image | default('centos-6-x64') }}"
23+
image_id: "{{ item.image | default('centos-7-x64') }}"
2424
region_id: "{{ item.region | default('nyc3') }}"
2525
# Customize this default for your account.
2626
ssh_key_ids: "{{ item.ssh_key | default('138954') }}"

0 commit comments

Comments
 (0)