Skip to content

Commit

Permalink
Merge pull request #2 from clouddrove/test
Browse files Browse the repository at this point in the history
update variables.tf
  • Loading branch information
Om Sharma committed Dec 29, 2022
2 parents c5a8567 + a78c471 commit d4de35b
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
1 change: 1 addition & 0 deletions example/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ module "documentdb" {
master_password = var.master_password
instance_class = var.instance_class
cluster_size = var.cluster_size
deletion_protection = true
}
44 changes: 44 additions & 0 deletions example/secured/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,10 @@ variable "attributes" {
# type = map(string)
# default = {}
# description = "Additional tags (e.g. map(`BusinessUnit`,`XYZ`)."
# }
# }

variable "deletion_protection" {
type = bool
default = null
description = "(optional) describe your variable"
}

0 comments on commit d4de35b

Please sign in to comment.