From 54d72ad9e0e931dd7580aee6b0887ce97b87460b Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Mon, 13 Nov 2017 15:40:18 +0100 Subject: [PATCH] typo + whitespaces --- amazon-ec2/README | 4 ++-- amazon-ec2/defaults/main.yml | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/amazon-ec2/README b/amazon-ec2/README index d3be7dc3..c47de370 100644 --- a/amazon-ec2/README +++ b/amazon-ec2/README @@ -5,9 +5,9 @@ Manage Amazon EC2 instances. This role is intended to be called before any other role to setup and start EC2 instances. -## Dependancies +## Dependencies -You should first ensure that you have python-boto package installed on your +You should first ensure that you have `python-boto` package installed on your machine and an Amazon security access key pair created for your account. ## Tasks diff --git a/amazon-ec2/defaults/main.yml b/amazon-ec2/defaults/main.yml index d53371dc..fde898bd 100644 --- a/amazon-ec2/defaults/main.yml +++ b/amazon-ec2/defaults/main.yml @@ -2,12 +2,12 @@ aws_region: ca-central-1 ec2_public_ip: False ec2_instance_count: 1 -ec2_security_group: "{{ec2_evolinux_security_group}}" -ec2_base_ami: "{{ec2_debian_base_ami[aws_region]}}" +ec2_security_group: "{{ ec2_evolinux_security_group }}" +ec2_base_ami: "{{ ec2_debian_base_ami[aws_region] }}" ec2_instance_type: t2.micro # Note: Do not try to put your ED25519 key here, AWS does not support it... ssh_pubkey_file: ~/.ssh/id_rsa.pub -ec2_keyname: "{{lookup('env', 'USER')}}" +ec2_keyname: "{{ lookup('env', 'USER') }}" # From https://wiki.debian.org/Cloud/AmazonEC2Image/Stretch ec2_debian_base_ami: @@ -45,4 +45,3 @@ ec2_evolinux_security_group: rules_egress: - proto: all cidr_ip: 0.0.0.0/0 -