Skip to content

Commit a398b1e

Browse files
committed
updated variables
1 parent 62fae58 commit a398b1e

File tree

23 files changed

+181
-495
lines changed

23 files changed

+181
-495
lines changed

CONSOLIDATION_PLAN.md

Lines changed: 0 additions & 95 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 0 additions & 135 deletions
This file was deleted.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,20 @@ To see a full example, check out the [main.tf](https://github.com/sourcefuse/ter
2020
```tcl
2121
module "example_doc_db_cluster" {
2222
source = "sourcefuse/arc-document-db/aws"
23-
// we recommend to pin the version we aren't simply for an example reference against our latest changes.
23+
2424
cluster_identifier = var.cluster_identifier
2525
master_username = var.master_username
2626
master_password = var.master_password
2727
2828
instance_count = var.instance_count
2929
instance_class = var.instance_class
3030
31-
subnet_ids = data.aws_subnets.private.ids
32-
vpc_id = data.aws_vpc.vpc.id
31+
subnet_config = {
32+
subnet_ids = data.aws_subnets.private.ids
33+
}
34+
vpc_id = data.aws_vpc.vpc.id
3335
34-
# Use simple security group IDs
35-
security_group_ids = var.security_group_ids
36+
security_group_data = local.security_group_data
3637
3738
backup_retention_period = var.backup_retention_period
3839
preferred_backup_window = var.preferred_backup_window
@@ -43,7 +44,6 @@ module "example_doc_db_cluster" {
4344
deletion_protection = var.deletion_protection
4445
4546
tags = module.tags.tags
46-
4747
}
4848
```
4949

VARIABLE_CONSOLIDATION_SUMMARY.md

Lines changed: 0 additions & 102 deletions
This file was deleted.

0 commit comments

Comments
 (0)