Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Smith <jsmith39@systems.wvu.edu>2018-10-03 01:18:30 +0300
committerJoshua Smith <jsmith39@systems.wvu.edu>2018-10-03 01:18:30 +0300
commit97e999d8af921e7af0813df44b3269ecd9338b5c (patch)
tree755df6f1a52d9e90774be38ac5011b7fc925d934
parent4aece58be8720bd719e8976137363fa8f30ee163 (diff)
Fix errors reported by ansible-lint in demo-aws-launch.yml.
-rw-r--r--jboss-standalone/demo-aws-launch.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/jboss-standalone/demo-aws-launch.yml b/jboss-standalone/demo-aws-launch.yml
index eb18146..5894465 100644
--- a/jboss-standalone/demo-aws-launch.yml
+++ b/jboss-standalone/demo-aws-launch.yml
@@ -26,8 +26,8 @@
- name: Wait for SSH to come up
wait_for:
host: "{{ item.public_dns_name }}"
- port: 22
- delay: 60
- timeout: 320
+ port: 22
+ delay: 60
+ timeout: 320
state: started
with_items: "{{ ec2.instances }}"