Note: Cloud resource asset types are only supported via the JSON schema
Name (* Required) | Description | Accepted Values or Format |
|---|---|---|
urn* | The unique string that identifies a resource within the cloud provider. For AWS, this is typically the ARN; for GCP, the full resource name; for Azure, the resource ID path. |
Examples: AWS: GCP: Azure: |
provider* | The cloud service provider managing the resource. | Accepted Values: aws, gcp, azure |
account_id* | The owning account or project identifier in the cloud provider. |
|
region | The region that the cloud resource is in. |
|
resource_name* | The full name of the cloud resource, often used interchangeably with |
|
// you can now put different asset types inside each asset separately rather than at the scan level.
{
"nucleus_import_version": "1",
"scan_tool": "<Scanning_Tool>",
"assets": [
{
"host_name": "my.secret.server.com",
"asset_type": "iam"
"urn": <string>, // mandatory
"provider": <string. valid values: aws, azure, gcp>, // mandatory
"account_id": <string>, // mandatory
"region": <string>,
"resource_name": <string> // mandatory
},
{
"host_name": "my.other.server.com",
"asset_type": "Host"
}
]
}