I have manually deployed a number of Alexa skills using a lambda backend and understand the manual process, however I am new to using the ask cli v2.
I believe I have all of the steps in the guide as far as having both ask and aws cli set. I have set my roles in AWS.
I am currently just trying to get used to the process and running
ask new
changing the invocation and then running
ask deploy
Everything runs seemingly correct until
Skill code built successfully. Code for region default built to C:\location\projectName.ask\lambda\build.zip successfully with build flow nodejs-npm.
==================== Deploy Skill Infrastructure ==================== / Deploy Alexa skill infrastructure for region "default" → No IAM role exists. Creating an IAM role...
And then we just wait... forever.
The AWS CLI profile has IAMFullAccess to create roles as needed.
What am I missing?
--debug
flag to yourask deploy
command. Debug flag should print out more details and maybe you'll be able to see why does it hang exactly. – R. Vaitask configure --list-profiles
to check that the profiles have been set up correctly for use with the ask cli? Would expect it to complain about this more explicitly, but doesn't hurt to check. – Oscar Schafer