Skip to content

Commit

Permalink
added extra_tags variable for custom tags
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbysinghh committed Dec 3, 2021
1 parent 6405934 commit c5f7937
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions _example/memcached/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ module "memcached" {
subnet_ids = module.subnets.public_subnet_id
security_group_ids = [module.memcached-sg.security_group_ids]
availability_zones = ["eu-west-1a", "eu-west-1b"]
tags = {
org = "test"
extra_tags = {
Application = "CloudDrove"
}
}
4 changes: 2 additions & 2 deletions _example/redis-cluster/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ module "redis-cluster" {
replicas_per_node_group = 2
num_node_groups = 1
automatic_failover_enabled = true
tags = {
org = "test"
extra_tags = {
Application = "CloudDrove"
}
}
4 changes: 2 additions & 2 deletions _example/redis/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ module "redis" {
availability_zones = ["eu-west-1a", "eu-west-1b"]
auto_minor_version_upgrade = true
number_cache_clusters = 2
tags = {
org = "test"
extra_tags = {
Application = "CloudDrove"
}
}

0 comments on commit c5f7937

Please sign in to comment.