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:
parent
be9ca35f79
commit
60b162de45
|
@ -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}"
|
||||
|
|
Loading…
Reference in New Issue