We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8990667 commit 2079616Copy full SHA for 2079616
1 file changed
contrib/provision-ec2-controller.sh
@@ -55,7 +55,7 @@ function echo_color {
55
if ! ec2-describe-group | grep -q "$sg_name"; then
56
echo_color "Creating security group: $sg_name"
57
set -x
58
- ec2-create-group $sg_name -d "Managed by Deis"
+ ec2-create-group $sg_name -d "Created by Deis"
59
set +x
60
echo_color "Authorizing TCP ports 22,80,443 from $sg_src..."
61
@@ -69,7 +69,7 @@ fi
69
70
# create ssh keypair and store it
71
if ! test -e $ssh_key_path; then
72
- echo "Creating new SSH key: $key_name"
+ echo_color "Creating new SSH key: $key_name"
73
74
ec2-create-keypair $key_name > $ssh_key_path
75
chmod 600 $ssh_key_path
0 commit comments