Commit d18ca566 authored by Anton Babenko's avatar Anton Babenko

Minor change to mssql example

parent 4c1cd3b9
...@@ -32,8 +32,8 @@ module "db" { ...@@ -32,8 +32,8 @@ module "db" {
allocated_storage = 20 allocated_storage = 20
storage_encrypted = false storage_encrypted = false
name = "demodb"
username = "demouser" username = "demouser"
password = "YourPwdShouldBeLongAndSecure!" password = "YourPwdShouldBeLongAndSecure!"
port = "1433" port = "1433"
......
...@@ -66,9 +66,9 @@ resource "aws_db_instance" "this" { ...@@ -66,9 +66,9 @@ resource "aws_db_instance" "this" {
backup_retention_period = "${var.backup_retention_period}" backup_retention_period = "${var.backup_retention_period}"
backup_window = "${var.backup_window}" backup_window = "${var.backup_window}"
tags = "${merge(var.tags, map("Name", format("%s", var.identifier)))}"
character_set_name = "${var.character_set_name}" character_set_name = "${var.character_set_name}"
tags = "${merge(var.tags, map("Name", format("%s", var.identifier)))}"
} }
resource "aws_db_instance" "this_mssql" { resource "aws_db_instance" "this_mssql" {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment