-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: 🚀 Pull from master branch and create new release. (#9)
* [fix/docdb_structure]Fix: Removed the default secuirty group created with document module and restructure the module. * [fix/docdb_structure]Fix: Removed the default secuirty group created with document module and restructure the module. * [fix/docdb_structure]Fix: Removed the default secuirty group created with document module and restructure the module. * [fix/docdb_structure]Fix: Removed the default secuirty group created with document module and restructure the module. * [fix/docdb_structure]Fix: Removed the default secuirty group created with document module and restructure the module. * [fix/docdb_structure]Fix: Ignored the tfsec warning for kms key * [fix/docdb_structure]Fix: Ignored the tfsec warning for kms key * [fix/docdb_structure]Fix: Ignored the tfsec warning for kms key * [fix/docdb_structure]Feat:ignored the tfsec warning for kms key and update the security group with description * [fix/docdb_structure]Fix: Restructure and fix the documentDB terraform module. * feat: introduce certeficiate authority for cluster instance * feat: fixed tf checks * fix: ran terraform format * fix: add enable variable * fix: fixed lints * fix: fixed lints --------- Co-authored-by: Anmol Nagpal <[email protected]> Co-authored-by: Anmol Nagpal <[email protected]>
- Loading branch information
1 parent
327bbb3
commit 8d2c8c1
Showing
11 changed files
with
167 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
variable "master_password" { | ||
type = string | ||
default = "test123456" | ||
description = "" | ||
default = "QfbaJpP00W0m413Bw1fe" | ||
description = "Master password for documentDB." | ||
} | ||
|
||
variable "instance_class" { | ||
type = string | ||
default = "db.t3.medium" | ||
description = "" | ||
description = "Instance class for DocumentDB Cluster." | ||
} | ||
|
||
variable "cluster_size" { | ||
type = number | ||
default = 1 | ||
description = "" | ||
description = "cluster size of DocumentDB." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
variable "skip_final_snapshot" { | ||
type = bool | ||
description = "Determines whether a final DB snapshot is created before the DB cluster is deleted." | ||
default = false | ||
description = "" | ||
} | ||
|
||
variable "storage_encrypted" { | ||
type = bool | ||
description = "Specifies whether the DB cluster is encrypted." | ||
default = true | ||
description = "" | ||
} | ||
|
||
variable "tls_enabled" { | ||
type = bool | ||
default = true | ||
description = "" | ||
description = "When true than cluster using TLS for communication." | ||
} | ||
|
||
variable "instance_class" { | ||
type = string | ||
default = "db.t3.medium" | ||
description = "" | ||
description = "The instance class to use. For more details, see https://docs.aws.amazon.com/documentdb/latest/developerguide/db-instance-classes.html#db-instance-class-specs ." | ||
} | ||
|
||
variable "cluster_size" { | ||
type = number | ||
default = 1 | ||
description = "" | ||
} | ||
type = string | ||
default = "1" | ||
description = "Number of DB instances to create in the cluster" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ terraform { | |
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 5.31.0" | ||
version = ">= 5.30" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.