Skip to content

Commit

Permalink
Fixed a small typo in the database example (#4284)
Browse files Browse the repository at this point in the history
In the file Terraform Hackathon\Examples\sql-azure\database\main.tf, there was a small reference mistake on line 19.
  • Loading branch information
Sharaden authored and katbyte committed Sep 10, 2019
1 parent 75e0779 commit 6a2fb60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/sql-azure/database/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resource "azurerm_sql_database" "example" {
name = "${var.prefix}-db"
resource_group_name = "${azurerm_resource_group.example.name}"
location = "${azurerm_resource_group.example.location}"
server_name = "${azurerm_sql_server.server.name}"
server_name = "${azurerm_sql_server.example.name}"
edition = "Basic"
collation = "SQL_Latin1_General_CP1_CI_AS"
create_mode = "Default"
Expand Down

0 comments on commit 6a2fb60

Please sign in to comment.