aegea
aegea copied to clipboard
`aegea launch` error
Here's an example of the command:
aegea launch --instance-type m3.medium --ssh-key-name ... --ami ... <inst-name>
It returns an error:
botocore.exceptions.ClientError: An error occurred (AccessDenied) when calling the ListHostedZones operation: User:...:assumed-role/aegea.launch/... is not authorized to perform: route53:ListHostedZones
The IAM role that is being used to perform the launch request (aegea.launch) doesn't have access to route53. If you don't want to give it access to route53, the easiest way to get around this error is by adding the --no-dns
option to the aegea launch
command.
I'm going to see if I can improve this behavior (perhaps by making this "route53 access denied" error non-fatal).
Got it, thanks Andrey.