Skip to content

Commit

Permalink
Merge pull request #9 from clouddrove/oracle
Browse files Browse the repository at this point in the history
add subnet group
  • Loading branch information
Om Sharma authored Jul 25, 2022
2 parents 3d52d2b + b8d20d1 commit e86aa54
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

#Module : label
#Description : This terraform module is designed to generate consistent label names and
# tags for resources. You can use terraform-labels to implement a strict
Expand Down Expand Up @@ -86,9 +85,9 @@ resource "aws_db_subnet_group" "db_subnet_group" {
count = var.enabled ? 1 : 0

description = format("Database subnet group for%s%s", var.delimiter, module.labels.id)
# name_prefix = format("subnet%s%s", var.delimiter, module.labels.id)
subnet_ids = var.subnet_ids
tags = module.labels.tags
name = module.labels.id
subnet_ids = var.subnet_ids
tags = module.labels.tags


lifecycle {
Expand Down

0 comments on commit e86aa54

Please sign in to comment.