Skip to content

Commit

Permalink
add application_data
Browse files Browse the repository at this point in the history
  • Loading branch information
roncitrus committed Dec 12, 2023
1 parent e7d25f1 commit ea3341e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform/environments/cdpt-chaps/database.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
#------------------------------------------------------------------------------

resource "aws_db_instance" "database" {
allocated_storage = app_data.accounts[local.environment].db_allocated_storage
allocated_storage = local.application_data.accounts[local.environment].db_allocated_storage
storage_type = "gp2"
engine = "sqlserver-web"
engine_version = "14.00.3381.3.v1"
instance_class = app_data.accounts[local.environment].db_instance_class
identifier = app_data.accounts[local.environment].db_instance_identifier
username = app_data.accounts[local.environment].db_user
instance_class = local.application_data.accounts[local.environment].db_instance_class
identifier = local.application_data.accounts[local.environment].db_instance_identifier
username = local.application_data.accounts[local.environment].db_user
password = data.aws_secretsmanager_secret_version.db_password.secret_string

}
Expand Down

0 comments on commit ea3341e

Please sign in to comment.