Skip to content

Commit b8597aa

Browse files
committed
fix filter for EC2 instances in EU region;
1 parent f03bf1e commit b8597aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws/reporting/pricing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def _ec2_usage_filter_map(instance_type):
2626
'us-west-1': 'USW1-BoxUsage:{}'.format(instance_type),
2727
'us-west-2': 'USW2-BoxUsage:{}'.format(instance_type),
2828
'eu-central-1': 'EUC1-BoxUsage:{}'.format(instance_type),
29-
'eu-west-1': 'EU-BoxUsage:{}'.format(instance_type),
30-
'eu-west-2': 'EU-BoxUsage:{}'.format(instance_type)
29+
'eu-west-1': 'EUW1-BoxUsage:{}'.format(instance_type),
30+
'eu-west-2': 'EUW2-BoxUsage:{}'.format(instance_type)
3131
}
3232

3333
def _region_filter_map():

0 commit comments

Comments
 (0)