Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:19:03 +08:00
commit 86b29444ff
12 changed files with 455 additions and 0 deletions

View File

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