Skip to content

Commit 692d23b

Browse files
committed
EOT
1 parent 6379b52 commit 692d23b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

examples/resources/coder_parameter/resource.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ data "coder_parameter" "example" {
1818
data "coder_parameter" "ami" {
1919
name = "Machine Image"
2020
description = "Provide the machine image."
21-
description_markdown = <<EOT
22-
# Select the machine image
23-
See the [registry](https://container.registry.blah/namespace) for options.
24-
EOT
21+
description_markdown = <<-EOT
22+
# Select the machine image
23+
See the [registry](https://container.registry.blah/namespace) for options.
24+
EOT
2525
option {
2626
value = "ami-xxxxxxxx"
2727
name = "Ubuntu"

provider/parameter_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ data "coder_parameter" "region" {
2525
name = "Region"
2626
type = "string"
2727
description = "Some option!"
28-
description_markdown = <<EOT
29-
# Select the machine image
30-
See the [registry](https://container.registry.blah/namespace) for options.
31-
EOT
28+
description_markdown = <<-EOT
29+
# Select the machine image
30+
See the [registry](https://container.registry.blah/namespace) for options.
31+
EOT
3232
mutable = true
3333
icon = "/icon/region.svg"
3434
option {

0 commit comments

Comments
 (0)