Skip to content

Commit bd544b5

Browse files
committed
Some documentation cosmetics fixes
1 parent 869e958 commit bd544b5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

website/docs/r/project_share_group.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ This resource allows you to share a project with a group
1414

1515
```hcl
1616
resource "gitlab_project_share_group" "test" {
17-
project_id = "12345"
18-
group_id = 1337
19-
access_level = "guest"
17+
project_id = "12345"
18+
group_id = 1337
19+
access_level = "guest"
2020
}
2121
```
2222

website/docs/r/service_github.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "gitlab_project" "awesome_project" {
2222
}
2323
2424
resource "gitlab_service_github" "github" {
25-
project = "${gitlab_project.awesome_project.id}"
25+
project = gitlab_project.awesome_project.id
2626
token = "REDACTED"
2727
repository_url = "https://github.com/terraform-providers/terraform-provider-gitlab"
2828
}

website/docs/r/service_jira.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resource "gitlab_project" "awesome_project" {
2020
}
2121
2222
resource "gitlab_service_jira" "jira" {
23-
project = "${gitlab_project.awesome_project.id}"
23+
project = gitlab_project.awesome_project.id
2424
url = "https://jira.example.com"
2525
username = "user"
2626
password = "mypass"

website/docs/r/service_slack.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ resource "gitlab_project" "awesome_project" {
2020
}
2121
2222
resource "gitlab_service_slack" "slack" {
23-
project = "${gitlab_project.awesome_project.id}"
23+
project = gitlab_project.awesome_project.id
2424
webhook = "https://webhook.com"
2525
username = "myuser"
2626
push_events = true

0 commit comments

Comments
 (0)