I'm running through AWS CodePipeline tutorial and there is this step
saying that I have to create a jenkins job running bash script which will connect to the EC2 instance (not the one where jenkins is running, but the one where the code has been deployed earlier).
It is said that I have to connect to the EC2 instance by running this command in bash script:
TEST_IP_ADDRESS=192.168.0.4 rake test
But my gut feeling is saying that this step is completely wrong.
There is no variable with this name, and there is no option to connect to external instance just like that.
I've completed all the steps successfully, but this one is obviously wrong