v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List cloud rules

List cloud rules. Requires scope clouds:read

get/clouds/rules

Query parameters

cloud_idinteger

Optional: Filters the open issue count to only count the issues related to the specified cloud

Response

A list of cloud rules

idstring

The unique identifier of this rule

titlestring

The title of this rule

descriptionstring

A summary of what the issue associated with this rule is

how_to_fixstring

A description on how to fix the issue associated with this cloud rule

cloud_type'aws' | 'gcp' | 'azure' | 'digocean' | 'kubernetes' | 'alibaba'

The type of cloud this rule is associated with. Is null for custom rules

open_issues_countinteger

A numeric value indicating how many open single issues are associated with this rule

Example response

[
  {
    "code": "aik_cloud_aws_001",
    "title": "Root account should have MFA enabled",
    "description": "The root account is the most privileged user in an AWS account. MFA adds an extra layer of protection on top of a user name and password.",
    "how_to_fix": "Using the IAM console navigate to Dashboard and expand Activate MFA on your root account.",
    "cloud_type": "aws",
    "open_issues_count": 1
  }
]