Skip to content

Commit c5f7937

Browse files
committed
added extra_tags variable for custom tags
1 parent 6405934 commit c5f7937

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

_example/memcached/example.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ module "memcached" {
6262
subnet_ids = module.subnets.public_subnet_id
6363
security_group_ids = [module.memcached-sg.security_group_ids]
6464
availability_zones = ["eu-west-1a", "eu-west-1b"]
65-
tags = {
66-
org = "test"
65+
extra_tags = {
66+
Application = "CloudDrove"
6767
}
6868
}

_example/redis-cluster/example.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ module "redis-cluster" {
6161
replicas_per_node_group = 2
6262
num_node_groups = 1
6363
automatic_failover_enabled = true
64-
tags = {
65-
org = "test"
64+
extra_tags = {
65+
Application = "CloudDrove"
6666
}
6767
}

_example/redis/example.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ module "redis" {
5858
availability_zones = ["eu-west-1a", "eu-west-1b"]
5959
auto_minor_version_upgrade = true
6060
number_cache_clusters = 2
61-
tags = {
62-
org = "test"
61+
extra_tags = {
62+
Application = "CloudDrove"
6363
}
6464
}

0 commit comments

Comments
 (0)