""" Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ import re import six from cfnlint import CloudFormationLintRule from cfnlint import RuleMatch from cfnlint.helpers import REGEX_ALPHANUMERIC class KeyName(CloudFormationLintRule): """Check if Mapping Keys are type string""" id = 'E7003' shortdesc = 'Mapping keys are strings and alphanumeric' description = 'Check if Mappings keys are properly typed as strings and alphanumeric' source_url = 'https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/mappings-section-structure.html' tags = ['mapping'] def check_key(self, key, path, check_alphanumeric=True): """ Check the key name for string and alphanumeric""" matches = [] if not isinstance(key, six.string_types): message = 'Mapping key ({0}) has to be a string.' matches.append(RuleMatch(path[:], message.format(key))) elif not re.match(REGEX_ALPHANUMERIC, key) and check_alphanumeric: message = 'Mapping key ({0}) has invalid name. Name has to be alphanumeric.' matches.append(RuleMatch(path[:], message.format(key))) return matches def match(self, cfn): """Check CloudFormation Mapping""" matches = [] mappings = cfn.template.get('Mappings', {}) for mapping_name, mapping_value in mappings.items(): if isinstance(mapping_value, dict): for key_name, key_value in mapping_value.items(): matches.extend(self.check_key(key_name, ['Mappings', mapping_name, key_name], False)) if isinstance(key_value, dict): for sub_key_name, _ in key_value.items(): matches.extend( self.check_key( sub_key_name, ['Mappings', mapping_name, key_name, sub_key_name])) return matches