infracost_cloud_upload_custom_properties
Upload CSV data to Infracost Cloud for custom property classification of cloud resources. Enables resource categorization and governance through property mapping.
Instructions
Upload custom property values to Infracost Cloud via CSV for resource classification. Requires INFRACOST_SERVICE_TOKEN environment variable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orgSlug | No | Organization slug from Infracost Cloud (defaults to INFRACOST_ORG env var) | |
| csvData | Yes | CSV data containing custom properties |
Input Schema (JSON Schema)
{
"properties": {
"csvData": {
"description": "CSV data containing custom properties",
"type": "string"
},
"orgSlug": {
"description": "Organization slug from Infracost Cloud (defaults to INFRACOST_ORG env var)",
"type": "string"
}
},
"required": [
"csvData"
],
"type": "object"
}