Skip to content

Commit 3041d75

Browse files
feat: Added support for ap-southeast-3 region (#6)
Co-authored-by: Anton Babenko <[email protected]>
1 parent a80f318 commit 3041d75

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

examples/pricing-resources/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ module "pricing" {
1313
location = "eu-west-2"
1414
}
1515
"aws_instance.this2" = {
16-
instanceType = "c4.xlarge"
17-
location = "eu-west-1"
16+
instanceType = "t3.large"
17+
location = "ap-southeast-3"
1818
}
1919
}
2020
}

modules/pricing/filters.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ locals {
276276
ap-northeast-3 = "APN3-NatGateway-Hours"
277277
ap-southeast-1 = "APS1-NatGateway-Hours"
278278
ap-southeast-2 = "APS2-NatGateway-Hours"
279+
ap-southeast-3 = "APS3-NatGateway-Hours"
279280
ca-central-1 = "CAN1-NatGateway-Hours"
280281
eu-central-1 = "EUC1-NatGateway-Hours"
281282
eu-west-1 = "EU-NatGateway-Hours"
@@ -305,6 +306,7 @@ locals {
305306
ap-northeast-3 = "APN3-LoadBalancerUsage"
306307
ap-southeast-1 = "APS1-LoadBalancerUsage"
307308
ap-southeast-2 = "APS2-LoadBalancerUsage"
309+
ap-southeast-3 = "APS3-LoadBalancerUsage"
308310
ca-central-1 = "CAN1-LoadBalancerUsage"
309311
eu-central-1 = "EUC1-LoadBalancerUsage"
310312
eu-west-1 = "EU-LoadBalancerUsage"
@@ -334,6 +336,7 @@ locals {
334336
ap-northeast-3 = "APN3-EBS:SnapshotUsage"
335337
ap-southeast-1 = "APS1-EBS:SnapshotUsage"
336338
ap-southeast-2 = "APS2-EBS:SnapshotUsage"
339+
ap-southeast-3 = "APS3-EBS:SnapshotUsage"
337340
ca-central-1 = "CAN1-EBS:SnapshotUsage"
338341
eu-central-1 = "EUC1-EBS:SnapshotUsage"
339342
eu-west-1 = "EU-EBS:SnapshotUsage"

0 commit comments

Comments
 (0)