diff --git a/hic_aws_costing_tools/aws_costs.py b/hic_aws_costing_tools/aws_costs.py index 1f36bbc..c5b6b3d 100755 --- a/hic_aws_costing_tools/aws_costs.py +++ b/hic_aws_costing_tools/aws_costs.py @@ -6,7 +6,16 @@ DEFAULT_COST_TYPE = "UnblendedCost" DEFAULT_GRANULARITY = "MONTHLY" -DEFAULT_EXCLUDE_RECORD_TYPES = ["Credit", "Refund", "Tax"] +DEFAULT_EXCLUDE_RECORD_TYPES = [ + "Credit", + "Refund", + "Tax", + # These two aren't documented on + # https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/manage-cost-categories.html + # Waiting for confirmation from AWS Support that it's OK to use these + "Enterprise Discount Program Discount", + "Solution Provider Program Discount", +] EXPECTED_UNIT = "USD"