Skip to content

Commit 8a8cdc4

Browse files
committed
updated variables
1 parent a398b1e commit 8a8cdc4

File tree

8 files changed

+0
-34
lines changed

8 files changed

+0
-34
lines changed

examples/basic-cluster/main.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ module "tags" {
44

55
environment = var.environment
66
project = var.project
7-
8-
extra_tags = var.extra_tags
97
}
108

119
module "documentdb_cluster" {

examples/basic-cluster/terraform.tfvars

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,3 @@ skip_final_snapshot = true
1919
# Tags module configuration
2020
environment = "dev"
2121
project = "basic-docdb"
22-
23-
extra_tags = {
24-
Owner = "terraform"
25-
Team = "platform"
26-
}

examples/basic-cluster/variables.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,6 @@ variable "project" {
7777
default = "basic-docdb"
7878
}
7979

80-
variable "extra_tags" {
81-
description = "Additional tags to apply to resources"
82-
type = map(string)
83-
default = {}
84-
}
85-
8680
variable "skip_final_snapshot" {
8781
description = "Skip final snapshot when destroying cluster"
8882
type = bool

examples/global-cluster-multi-region/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ module "tags" {
66
environment = var.environment
77
project = var.project
88

9-
extra_tags = var.extra_tags
109
}
1110

1211
## Primary cluster in us-east-1

examples/global-cluster-multi-region/variables.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@ variable "project" {
1010
default = "global-docdb"
1111
}
1212

13-
variable "extra_tags" {
14-
description = "Additional tags to apply to resources"
15-
type = map(string)
16-
default = {}
17-
}
18-
1913

2014
variable "global_cluster_identifier" {
2115
description = "The global cluster identifier"

examples/multi-az-cluster/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ module "tags" {
55
environment = var.environment
66
project = var.project
77

8-
extra_tags = var.extra_tags
98
}
109

1110
module "documentdb_cluster" {

examples/multi-az-cluster/terraform.tfvars

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ master_username = "docdbadmin"
55
instance_count = 3
66
instance_class = "db.r5.large"
77

8-
# Allow access from VPC CIDR
9-
allowed_cidr_blocks = ["10.12.0.0/16"]
10-
118
# Secrets Manager configuration
129
# secret_name will be auto-generated as "${cluster_identifier}-credentials-${random_suffix}"
1310
secret_recovery_window_in_days = 7 # Minimum allowed value
@@ -50,8 +47,3 @@ db_cluster_parameter_group_parameters = [
5047
# Tags
5148
environment = "arc"
5249
project = "multi-az-docdb"
53-
54-
extra_tags = {
55-
Purpose = "multi-az-testing"
56-
Owner = "terraform"
57-
}

examples/multi-az-cluster/variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,6 @@ variable "project" {
109109
default = "multi-az-docdb"
110110
}
111111

112-
variable "extra_tags" {
113-
description = "Additional tags to apply to resources"
114-
type = map(string)
115-
default = {}
116-
}
117112
variable "vpc_name" {
118113
description = "Name of the VPC to use"
119114
type = string

0 commit comments

Comments
 (0)