Skip to content

Commit

Permalink
feat: Added support for ap-southeast-3 region (#6)
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Babenko <anton@antonbabenko.com>
  • Loading branch information
markandersontrocme and antonbabenko committed Dec 17, 2021
1 parent a80f318 commit 3041d75
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/pricing-resources/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ module "pricing" {
location = "eu-west-2"
}
"aws_instance.this2" = {
instanceType = "c4.xlarge"
location = "eu-west-1"
instanceType = "t3.large"
location = "ap-southeast-3"
}
}
}
3 changes: 3 additions & 0 deletions modules/pricing/filters.tf
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ locals {
ap-northeast-3 = "APN3-NatGateway-Hours"
ap-southeast-1 = "APS1-NatGateway-Hours"
ap-southeast-2 = "APS2-NatGateway-Hours"
ap-southeast-3 = "APS3-NatGateway-Hours"
ca-central-1 = "CAN1-NatGateway-Hours"
eu-central-1 = "EUC1-NatGateway-Hours"
eu-west-1 = "EU-NatGateway-Hours"
Expand Down Expand Up @@ -305,6 +306,7 @@ locals {
ap-northeast-3 = "APN3-LoadBalancerUsage"
ap-southeast-1 = "APS1-LoadBalancerUsage"
ap-southeast-2 = "APS2-LoadBalancerUsage"
ap-southeast-3 = "APS3-LoadBalancerUsage"
ca-central-1 = "CAN1-LoadBalancerUsage"
eu-central-1 = "EUC1-LoadBalancerUsage"
eu-west-1 = "EU-LoadBalancerUsage"
Expand Down Expand Up @@ -334,6 +336,7 @@ locals {
ap-northeast-3 = "APN3-EBS:SnapshotUsage"
ap-southeast-1 = "APS1-EBS:SnapshotUsage"
ap-southeast-2 = "APS2-EBS:SnapshotUsage"
ap-southeast-3 = "APS3-EBS:SnapshotUsage"
ca-central-1 = "CAN1-EBS:SnapshotUsage"
eu-central-1 = "EUC1-EBS:SnapshotUsage"
eu-west-1 = "EU-EBS:SnapshotUsage"
Expand Down

0 comments on commit 3041d75

Please sign in to comment.