summaryrefslogtreecommitdiffstats
path: root/playbooks/aws/openshift-cluster/launch_instances.yml
diff options
context:
space:
mode:
Diffstat (limited to 'playbooks/aws/openshift-cluster/launch_instances.yml')
-rw-r--r--playbooks/aws/openshift-cluster/launch_instances.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/playbooks/aws/openshift-cluster/launch_instances.yml b/playbooks/aws/openshift-cluster/launch_instances.yml
index e4d5952fd..9d645fbe5 100644
--- a/playbooks/aws/openshift-cluster/launch_instances.yml
+++ b/playbooks/aws/openshift-cluster/launch_instances.yml
@@ -5,6 +5,7 @@
machine_region: "{{ lookup('env', 'ec2_region')|default('us-east-1', true) }}"
machine_keypair: "{{ lookup('env', 'ec2_keypair')|default('libra', true) }}"
created_by: "{{ lookup('env', 'LOGNAME')|default(cluster, true) }}"
+ security_group: "{{ lookup('env', 'ec2_security_group')|default('public', true) }}"
env: "{{ cluster }}"
host_type: "{{ type }}"
env_host_type: "{{ cluster }}-openshift-{{ type }}"
@@ -14,7 +15,7 @@
state: present
region: "{{ machine_region }}"
keypair: "{{ machine_keypair }}"
- group: ['public']
+ group: "{{ security_group }}"
instance_type: "{{ machine_type }}"
image: "{{ machine_image }}"
count: "{{ instances | oo_len }}"