Skip to content

Commit

Permalink
Fixed typo in error message (#716)
Browse files Browse the repository at this point in the history
  • Loading branch information
geraldschmidtbabylon authored Aug 10, 2023
1 parent b74b6c9 commit eb99070
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform_compliance/extensions/terraform.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def _mount_references(self):
defaults = Defaults()
console_write('{} {}: {}'.format(defaults.warning_icon,
defaults.warning_colour('WARNING (mounting)'),
defaults.info_colour('The reference "{}" in resource {} is ambigious.'
defaults.info_colour('The reference "{}" in resource {} is ambiguous.'
' It will be mounted to the following resources:').format(ref, resource)))
for i, r in enumerate(ambiguous_references, 1):
console_write(defaults.info_colour('{}. {}'.format(i, r)))
Expand All @@ -475,7 +475,7 @@ def _mount_references(self):
else:
console_write('{} {}: {}'.format(Defaults().warning_icon,
Defaults().warning_colour('WARNING (mounting)'),
Defaults().info_colour('The reference "{}" in resource {} is ambigious. It will not be mounted.'.format(ref, resource))))
Defaults().info_colour('The reference "{}" in resource {} is ambiguous. It will not be mounted.'.format(ref, resource))))
continue
elif key not in ref_list:
ref_list[key] = self._find_resource_from_name(ref, current_module_address)
Expand Down

0 comments on commit eb99070

Please sign in to comment.