diff --git a/CHANGELOG.md b/CHANGELOG.md index a33b3b7d..69dca2b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [1.0.5] - 2021-07-28 +### Improvements +- Add EKS permissions that accept wildcard resource only + ## [1.0.4] - 2021-06-03 ### Improvements - Add `stack_id` to log output when failing to convert a YML template to JSON. diff --git a/cfripper/__version__.py b/cfripper/__version__.py index 08d18414..e986d530 100644 --- a/cfripper/__version__.py +++ b/cfripper/__version__.py @@ -1,3 +1,3 @@ -VERSION = (1, 0, 4) +VERSION = (1, 0, 5) __version__ = ".".join(map(str, VERSION)) diff --git a/cfripper/cloudformation_actions_only_accepts_wildcard.py b/cfripper/cloudformation_actions_only_accepts_wildcard.py index 6541b577..9e98a642 100644 --- a/cfripper/cloudformation_actions_only_accepts_wildcard.py +++ b/cfripper/cloudformation_actions_only_accepts_wildcard.py @@ -310,6 +310,9 @@ "ecs:ListTaskDefinitions", "ecs:PutAccountSetting", "ecs:PutAccountSettingDefault", + "eks:CreateCluster", + "eks:DescribeAddonVersions", + "eks:ListClusters", "elasticbeanstalk:CheckDNSAvailability", "elasticbeanstalk:CreateStorageLocation", "elasticbeanstalk:DescribeAccountAttributes",