@cryptotaxi247 / infra-1 / commits / 481ff6cf

terraform: ignore nixos-cost-tag

This doesn't seem to be managed within Terraform.

edef committed Jul 31, 2024 at 01:01 UTC 481ff6cfc65843a52f735ef6001112800190ddd5
1 file changed +8
terraform/providers.tf
+8
@@ -1,12 +1,20 @@
1 provider "aws" {
2 region = "eu-west-1"
3 profile = "nixos-prod"
4 +
5 + ignore_tags {
6 + keys = ["nixos-cost-tag"]
7 + }
8 }
9
10 provider "aws" {
11 alias = "us"
12 region = "us-east-1"
13 profile = "nixos-prod"
14 +
15 + ignore_tags {
16 + keys = ["nixos-cost-tag"]
17 + }
18 }
19
20 provider "fastly" {}