docs: Fix inline comment in AWS instance resource (#14865)

`//` appears to be a valid inline comment, but it affects the formatting
in the documentation.
This commit is contained in:
David Wittman 2017-05-26 16:04:52 -05:00 committed by Clint
parent be9ca35f79
commit 60b162de45
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ resource "aws_network_interface" "foo" {
}
resource "aws_instance" "foo" {
ami = "ami-22b9a343" // us-west-2
ami = "ami-22b9a343" # us-west-2
instance_type = "t2.micro"
network_interface {
network_interface_id = "${aws_network_interface.foo.id}"