Files
2025-11-30 08:19:03 +08:00

1.2 KiB

1# Cloud Cost Report Template
2# This CSV file provides a template for generating cost reports.
3# Each row represents a cost item.
4#
5# Columns:
6# - Date: The date of the cost (YYYY-MM-DD).
7# - Account: The account or project associated with the cost.
8# - Service: The cloud service used (e.g., EC2, S3, RDS).
9# - Region: The AWS region (e.g., us-east-1, eu-west-1). Use 'Global' if applicable.
10# - Item: A descriptive name for the cost item.
11# - Cost: The cost in USD.
12# - Unit: The unit of measurement for the item (e.g., hours, GB, requests). Leave blank if not applicable.
13# - Quantity: The quantity consumed. Leave blank if not applicable.
14# - Notes: Any additional notes or descriptions.
15#
16# Example usage:
17# 2023-10-26,ProjectA,EC2,us-east-1,Instance m5.large,1.20,hours,10,Compute costs for web server
18# 2023-10-26,ProjectB,S3,us-west-2,Storage,0.50,GB,100,Storage costs for backups
19# 2023-10-26,ProjectA,RDS,us-east-1,Database instance,2.50,hours,5,Database costs
20# 2023-10-26,ProjectC,Lambda,Global,Function invocations,0.10,requests,10000,Lambda function costs
21Date,Account,Service,Region,Item,Cost,Unit,Quantity,Notes
22#YYYY-MM-DD,AccountName,ServiceName,RegionName,ItemDescription,CostInUSD,UnitOfMeasure,QuantityConsumed,AdditionalNotes