Skip to content
This repository was archived by the owner on Jan 12, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ resource "aws_db_instance" "default" {
# Configure the MySQL provider based on the outcome of
# creating the aws_db_instance.
provider "mysql" {
endpoint = "${aws_db_instance.default.endpoint}"
username = "${aws_db_instance.default.username}"
password = "${aws_db_instance.default.password}"
endpoint = aws_db_instance.default.endpoint
username = aws_db_instance.default.username
password = aws_db_instance.default.password
}

# Create a second database, in addition to the "initial_db" created
Expand Down