0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VPCで見知らぬ料金がかかっていて犯人捜し

Posted at

ディメンションを使用タイプにする

よく見える。
chrome_g2AL3aUZDR.png

さらに下記設定をONにすると14日間に制限されるがリソース毎の料金も確認できる。便利。
image.png
chrome_7xeXqaq1SY.png

対処

エンドポイント削除。
とは言えプライベートサブネットからは必要なものもあるので、コマンド用意しておいて都度作成する運用に。

aws ec2 create-vpc-endpoint \
    --vpc-endpoint-type Interface \
    --vpc-id vpc-xxxx  \
    --subnet-ids subnet-xxxx \
    --security-group-ids sg-xxxx \
    --service-name com.amazonaws.ap-northeast-1.ssm 

まとめ

S3エンドポイントが無料なのでその他も無料だと勘違いしていて、interfaceのエンドポイントは課金されることを知らなかった!
#というか、盲目的に作成していたので、interface型と認識さえしていなかった。。。反省

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?