aws-cis-controls-assessment 1.0.7__py3-none-any.whl → 1.0.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,6 @@ CIS Controls Implementation Groups (IG1, IG2, IG3). Implements 145 comprehensive
6
6
  across all implementation groups for complete security compliance assessment.
7
7
  """
8
8
 
9
- __version__ = "1.0.7"
9
+ __version__ = "1.0.8"
10
10
  __author__ = "AWS CIS Assessment Team"
11
11
  __description__ = "Production-ready AWS CIS Controls Compliance Assessment Framework"
@@ -68,8 +68,8 @@ class EC2ManagedInstanceAssociationComplianceStatusCheckAssessment(BaseConfigRul
68
68
  # Get association compliance status
69
69
  try:
70
70
  compliance_response = ssm_client.list_compliance_items(
71
- ResourceId=instance_id,
72
- ResourceType='ManagedInstance'
71
+ ResourceIds=[instance_id],
72
+ ResourceTypes=['ManagedInstance']
73
73
  )
74
74
 
75
75
  compliance_items = compliance_response.get('ComplianceItems', [])