check is subject_alt_names is not none before checking length
This commit is contained in:
parent
b40c5e557e
commit
427705c9f0
@ -185,7 +185,7 @@ class AWSCertificateManagerResponse(BaseResponse):
|
|||||||
idempotency_token = self._get_param('IdempotencyToken')
|
idempotency_token = self._get_param('IdempotencyToken')
|
||||||
subject_alt_names = self._get_param('SubjectAlternativeNames')
|
subject_alt_names = self._get_param('SubjectAlternativeNames')
|
||||||
|
|
||||||
if len(subject_alt_names) > 10:
|
if subject_alt_names is not None and len(subject_alt_names) > 10:
|
||||||
# There is initial AWS limit of 10
|
# There is initial AWS limit of 10
|
||||||
msg = 'An ACM limit has been exceeded. Need to request SAN limit to be raised'
|
msg = 'An ACM limit has been exceeded. Need to request SAN limit to be raised'
|
||||||
return json.dumps({'__type': 'LimitExceededException', 'message': msg}), dict(status=400)
|
return json.dumps({'__type': 'LimitExceededException', 'message': msg}), dict(status=400)
|
||||||
|
Loading…
Reference in New Issue
Block a user