Reputation: 53
Is there any limit on length of the AWS AMI name(the immutable name) that would be given by AWS upon creation of an AMI? I don't find it anywhere in the documentation.
Upvotes: 3
Views: 2912
Reputation: 1148
AMI names must be between 3 and 128 characters long.
Further, if you are looking for characters, you can include letters, numbers, (
, )
, .
, -
, /
and _
Here's the source as requested.
Upvotes: 5
Reputation: 270134
The help bubble on the Image name field in the Amazon EC2 management console says:
Description of the image. This field is limited to 127 characters in length and cannot be modified.
Upvotes: 0