Skip to content
This repository has been archived by the owner on Jan 12, 2021. It is now read-only.

Improve Docs: Terraform 0.12 syntax of example #137

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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