aws-quickstart/quickstart-hashicorp-vault

Spelling error

jhmartin opened this issue · 2 comments

Thanks for pointing this out.
I would like to just confirm that you are talking about the two lines:
echo instance_id_array $instance_id_array
and
echo instance_ip_array $instance_ip_array

They should be outputting the entire array like this:
echo instance_id_array ${instance_id_array[@]}
and
echo instance_ip_array ${instance_ip_array[@]}

From these lines: https://github.com/aws-quickstart/quickstart-hashicorp-vault/blob/master/scripts/bootstrap_server.sh#L59-L71

I should have specified the exact text :< I recall it was just a simple spelling error, but now that I look at it again I don't see it so perhaps I just misread it.