Skip to content

Commit 321fb06

Browse files
Merge pull request #126 from grafana/format-examples
Examples are formatted properly
2 parents 78fc116 + f94f913 commit 321fb06

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

website/docs/r/alert_notification.html.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ The alert notification resource allows an alert notification channel to be creat
1414

1515
```hcl
1616
resource "grafana_alert_notification" "email_someteam" {
17-
name = "Email that team"
18-
type = "email"
19-
is_default = false
17+
name = "Email that team"
18+
type = "email"
19+
is_default = false
2020
send_reminder = true
21-
frequency = "24h"
21+
frequency = "24h"
2222
2323
settings = {
24-
24+
2525
uploadImage = "false"
2626
}
2727
}

website/docs/r/dashboard.html.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ source is created before a dashboard that refers to it, use the `depends_on`
2929
meta-parameter:
3030

3131
```hcl
32-
depends_on = ["grafana_data_source.metrics"]
32+
depends_on = ["grafana_data_source.metrics"]
3333
```
3434

3535
## Argument Reference
@@ -38,7 +38,7 @@ The following arguments are supported:
3838

3939
* `config_json` - (Required) The JSON configuration for the dashboard.
4040
* `folder` - (Optional, Forces new resource) The internal id of the folder
41-
in Grafana in which to place the dashboard.
41+
in Grafana in which to place the dashboard.
4242

4343
## Attributes Reference
4444

website/docs/r/organization.html.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ be created and managed.
1717
# Create a Grafana organization with defined membership, creating placeholder
1818
# accounts for users that don't exist.
1919
resource "grafana_organization" "test-org" {
20-
name = "Test Organization"
21-
admin_user = "admin"
22-
create_users = true
23-
admins = [
24-
25-
]
26-
editors = [
27-
28-
29-
]
30-
viewers = [
31-
32-
33-
]
20+
name = "Test Organization"
21+
admin_user = "admin"
22+
create_users = true
23+
admins = [
24+
25+
]
26+
editors = [
27+
28+
29+
]
30+
viewers = [
31+
32+
33+
]
3434
}
3535
```
3636

0 commit comments

Comments
 (0)