Skip to content

Commit 04a4b7b

Browse files
authored
add estimated-usage.yaml (#228)
1 parent bf07db0 commit 04a4b7b

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

estimated-usage.yaml

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# You can use this file to define resource usage estimates for Infracost to use when calculating
2+
# the cost of usage-based resource, such as AWS S3 or Lambda.
3+
# `infracost breakdown --usage-file infracost-usage.yml [other flags]`
4+
# See https://infracost.io/usage-file/ for docs
5+
version: 0.1
6+
# resource_type_default_usage:
7+
##
8+
## The following usage values apply to each resource of the given type, which is useful when you want to define defaults.
9+
## All values are commented-out, you can uncomment resource types and customize as needed.
10+
##
11+
# ibm_cos_bucket:
12+
# accelerated_archive_capacity: 0.0
13+
# accelerated_archive_restore: 0.0
14+
# archive_capacity: 0.0
15+
# archive_restore: 0.0
16+
# aspera_egress: 0.0
17+
# aspera_ingress: 0.0
18+
# class_a_request_count: 0
19+
# class_b_request_count: 0
20+
# monthly_average_capacity: 0.0
21+
# monthly_data_retrieval: 0
22+
# public_standard_egress: 0.0
23+
# ibm_resource_instance:
24+
# appconnect_gigabyte_transmitted_outbounds: 0.0
25+
# appconnect_thousand_runs: 0.0
26+
# appconnect_vcpu_hours: 0.0
27+
# appid_advanced_authentications: 0
28+
# appid_authentications: 0
29+
# appid_users: 0
30+
# kms_key_versions: 0
31+
# secretsmanager_active_secrets: 0
32+
# secretsmanager_instance: 0
33+
# logdna_gigabyte_months: 0.0
34+
# activitytracker_gigabyte_months: 0.0
35+
# sysdig-monitor_NODE_HOURS: 0.0
36+
# sysdig-monitor_CONTAINER_HOURS: 0.0
37+
# sysdig-monitor_API_CALL_HOURS: 0.0
38+
# sysdig-monitor_TIME_SERIES_HOURS: 0.0
39+
# continuousdelivery_authorized_users: 0
40+
# wml_capacity_unit_hour: 0.0
41+
# wml_instance: 0.0
42+
# wml_class1_ru: 0.0
43+
# wml_class2_ru: 0.0
44+
# wml_class3_ru: 0.0
45+
# wa_instance: 0.0
46+
# wa_monthly_active_users: 0.0
47+
# wa_monthly_voice_users: 0.0
48+
# wd_instance: 0.0
49+
# wd_documents: 0.0
50+
# wd_queries: 0.0
51+
# wd_custom_models: 0.0
52+
# wd_collections: 0.0
53+
# scc_evaluations: 0.0
54+
# data-science-experience_CAPACITY_UNIT_HOURS: 1.0
55+
# sysdig-secure_MULTI_CLOUD_CSPM_COMPUTE_INSTANCES: 0.0
56+
# sysdig-secure_NODE_HOURS: 0.0
57+
# sysdig-secure_VM_NODE_HOUR: 0.0
58+
# aiopenscale_RESOURCE_UNITS: 1.0
59+
# aiopenscale_MODELS_PER_MONTH: 1.0
60+
resource_usage:
61+
##
62+
## The following usage values apply to individual resources and override any value defined in the resource_type_default_usage section.
63+
## All values are commented-out, you can uncomment resources and customize as needed.
64+
##
65+
module.cos[0].module.buckets.module.buckets["base-event-notifications-bucket"].ibm_cos_bucket.cos_bucket[0]:
66+
archive_capacity: 10.0 # Amount of your estimated archive storage in GB
67+
archive_restore: 10.0 # Amount of data restored from its archived state in GB
68+
accelerated_archive_capacity: 10.0 # Amount of your estimated archive storage in GB
69+
accelerated_archive_restore: 10.0 # Amount of data restored from its archived state in GB
70+
aspera_ingress: 0.0 # Amount of data uploaded with Aspera in GB
71+
aspera_egress: 0.0 # Amount of data downloaded with Aspera in GB
72+
class_a_request_count: 30 # Monthly number of Class A requests, 1k
73+
class_b_request_count: 0 # Monthly number of Class B requests 10k
74+
monthly_average_capacity: 10 # Average amount of data stored in GB
75+
monthly_data_retrieval: 10 # Amount of data retrieved in GB
76+
public_standard_egress: 0.0 # Amount of data downloaded in GB

0 commit comments

Comments
 (0)